Skip to content

Commit

Permalink
Bumps protocol version to 3 to get serf version 5.
Browse files Browse the repository at this point in the history
  • Loading branch information
James Phillips committed Jun 3, 2015
1 parent 0aea1f0 commit feb7f65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions consul/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ func init() {
protocolVersionMap = map[uint8]uint8{
1: 4,
2: 4,
3: 5,
}
}

Expand Down
2 changes: 1 addition & 1 deletion consul/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
// protocol versions.
const (
ProtocolVersionMin uint8 = 1
ProtocolVersionMax = 2
ProtocolVersionMax = 3
)

const (
Expand Down

0 comments on commit feb7f65

Please sign in to comment.