mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-09 00:33:28 -04:00
Merge pull request #1394 from joehillen/patch-1
Fix default etcd address
This commit is contained in:
commit
04d3da065a
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ func newEtcdBackend(conf map[string]string, logger *log.Logger) (Backend, error)
|
|||
}
|
||||
|
||||
// Set a default machines list and check for an overriding address value.
|
||||
machines := "http://128.0.0.1:2379"
|
||||
machines := "http://127.0.0.1:2379"
|
||||
if address, ok := conf["address"]; ok {
|
||||
machines = address
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue