Browse Source

Bumps protocol version back down as we've made memberlist smarter.

pull/1209/head
James Phillips 9 years ago
parent
commit
af7d2cb596
  1. 1
      consul/config.go
  2. 2
      consul/server.go

1
consul/config.go

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

2
consul/server.go

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

Loading…
Cancel
Save