From 9c65bfa768ec4d0212d1a3a26a2332814c8fd466 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Wed, 5 Oct 2016 18:09:15 -0700 Subject: [PATCH] Fixes port numbers in peers.info. --- consul/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consul/server.go b/consul/server.go index 509bc32944..ed9a7f7881 100644 --- a/consul/server.go +++ b/consul/server.go @@ -855,7 +855,7 @@ As of Consul 0.7.0, the peers.json file is only used for recovery after an outage. It should be formatted as a JSON array containing the address and port of each Consul server in the cluster, like this: -["10.1.0.1:8500","10.1.0.2:8500","10.1.0.3:8500"] +["10.1.0.1:8300","10.1.0.2:8300","10.1.0.3:8300"] Under normal operation, the peers.json file will not be present.