Skip to content

Commit

Permalink
Fix default datastore port in api, sessionsrv and vault plan
Browse files Browse the repository at this point in the history
Signed-off-by: Jamie Winsor <[email protected]>

Pull request: #528
Approved by: metadave
  • Loading branch information
reset authored and thesentinels committed May 16, 2016
1 parent 9942770 commit a05956c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/builder-api/plan/default.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
http_addr = "127.0.0.1:9636"
http_addr = "0.0.0.0:9636"
sessionsrv_addr = "127.0.0.1:5560"
vaultsrv_addr = "127.0.0.1:5561"

[depot]
path = "/hab/svc/hab-depot/data"
datastore_addr = "127.0.0.1:6379"
datastore_addr = "127.0.0.1:6397"
2 changes: 1 addition & 1 deletion components/builder-sessionsrv/plan/default.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
listen_addr = "0.0.0.0:5560"
datastore_addr = "127.0.0.1:6397"
datastore_addr = "127.0.0.1:6379"
worker_count = 8
2 changes: 1 addition & 1 deletion components/builder-vault/plan/default.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
listen_addr = "0.0.0.0:5561"
datastore_addr = "127.0.0.1:6397"
datastore_addr = "127.0.0.1:6379"
worker_count = 8

0 comments on commit a05956c

Please sign in to comment.