From ea94aea1364034d7c255fc5bf786ae5df4a1afa6 Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Fri, 13 Jan 2017 13:54:52 -0800 Subject: [PATCH 1/2] etcdserver/api: add 3.2 in capability --- etcdserver/api/capability.go | 1 + 1 file changed, 1 insertion(+) diff --git a/etcdserver/api/capability.go b/etcdserver/api/capability.go index ab8cee7cf..ae23cdf7d 100644 --- a/etcdserver/api/capability.go +++ b/etcdserver/api/capability.go @@ -38,6 +38,7 @@ var ( "2.3.0": {AuthCapability: true}, "3.0.0": {AuthCapability: true, V3rpcCapability: true}, "3.1.0": {AuthCapability: true, V3rpcCapability: true}, + "3.2.0": {AuthCapability: true, V3rpcCapability: true}, } enableMapMu sync.RWMutex From fa9a78450cf2345123d61d95e754aea81aef8f0a Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Fri, 13 Jan 2017 14:23:15 -0800 Subject: [PATCH 2/2] rafthttp: add 3.2.0 stream type --- rafthttp/stream.go | 1 + 1 file changed, 1 insertion(+) diff --git a/rafthttp/stream.go b/rafthttp/stream.go index e69a44ff6..e10056731 100644 --- a/rafthttp/stream.go +++ b/rafthttp/stream.go @@ -51,6 +51,7 @@ var ( "2.3.0": {streamTypeMsgAppV2, streamTypeMessage}, "3.0.0": {streamTypeMsgAppV2, streamTypeMessage}, "3.1.0": {streamTypeMsgAppV2, streamTypeMessage}, + "3.2.0": {streamTypeMsgAppV2, streamTypeMessage}, } )