Merge pull request #996 from hashicorp/f-tcp-pings

Bumps protocol version to 3 to get serf version 5.
This commit is contained in:
James Phillips 2015-06-03 21:18:45 -07:00
commit 478d1c3d2d
2 changed files with 2 additions and 1 deletions

View File

@ -32,6 +32,7 @@ func init() {
protocolVersionMap = map[uint8]uint8{
1: 4,
2: 4,
3: 5,
}
}

View File

@ -27,7 +27,7 @@ import (
// protocol versions.
const (
ProtocolVersionMin uint8 = 1
ProtocolVersionMax = 2
ProtocolVersionMax = 3
)
const (