Skip to content

Commit

Permalink
Fix wrong join port
Browse files Browse the repository at this point in the history
  • Loading branch information
iknite committed Feb 21, 2019
1 parent 140a492 commit afb3f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ func setupServer(id int, joinAddr string, tls bool, t *testing.T) (scope.TestF,
conf.RaftAddr = fmt.Sprintf("127.0.0.1:850%d", id)
conf.GossipAddr = fmt.Sprintf("127.0.0.1:840%d", id)
if id > 0 {
conf.RaftJoinAddr = []string{"127.0.0.1:8600"}
conf.RaftJoinAddr = []string{"127.0.0.1:8700"}
conf.GossipJoinAddr = []string{"127.0.0.1:8400"}
}
conf.DBPath = path + "data"
Expand Down

0 comments on commit afb3f59

Please sign in to comment.