From e6e1f2ff7dff5e3a11649106a7dbbc5859f022e6 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Sun, 14 Sep 2014 22:39:17 -0700 Subject: [PATCH] Procfile: don't use a 0x0 peer 0x0 peer id is no longer valid, don't use it. --- Procfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Procfile b/Procfile index af45bacd9..d8afccc46 100644 --- a/Procfile +++ b/Procfile @@ -1,5 +1,5 @@ # Use goreman to run `go get github.com/mattn/goreman` -etcd0: ./etcd -id 0x0 -l :8080 -peers '0x0=localhost:8080&0x1=localhost:8081&0x2=localhost:8082' -etcd1: ./etcd -id 0x1 -l :8081 -peers '0x0=localhost:8080&0x1=localhost:8081&0x2=localhost:8082' -etcd2: ./etcd -id 0x2 -l :8082 -peers '0x0=localhost:8080&0x1=localhost:8081&0x2=localhost:8082' -proxy: ./etcd -proxy-mode -l :4001 -peers '0x0=localhost:8080&0x1=localhost:8081&0x2=localhost:8082' +etcd1: ./etcd -id 0x1 -l :8080 -peers '0x1=localhost:8080&0x2=localhost:8081&0x3=localhost:8082' +etcd2: ./etcd -id 0x2 -l :8081 -peers '0x1=localhost:8080&0x2=localhost:8081&0x3=localhost:8082' +etcd3: ./etcd -id 0x3 -l :8082 -peers '0x1=localhost:8080&0x2=localhost:8081&0x3=localhost:8082' +proxy: ./etcd -proxy-mode -l :4001 -peers '0x1=localhost:8080&0x2=localhost:8081&0x3=localhost:8082'