Skip to content

Commit

Permalink
Procfile: don't use a 0x0 peer
Browse files Browse the repository at this point in the history
0x0 peer id is no longer valid, don't use it.
  • Loading branch information
Brandon Philips committed Sep 15, 2014
1 parent e085cc4 commit e6e1f2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Procfile
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit e6e1f2f

Please sign in to comment.