From b3ec44ca998b74db966c566071f8f5c9f3fbc421 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Wed, 20 Dec 2017 12:32:23 -0800 Subject: [PATCH 1/2] etcdserver/api: add 3.3.0 as compatible server capability Signed-off-by: Gyuho Lee --- etcdserver/api/capability.go | 1 + 1 file changed, 1 insertion(+) diff --git a/etcdserver/api/capability.go b/etcdserver/api/capability.go index 5e2de58e9..eb34383d7 100644 --- a/etcdserver/api/capability.go +++ b/etcdserver/api/capability.go @@ -37,6 +37,7 @@ var ( "3.0.0": {AuthCapability: true, V3rpcCapability: true}, "3.1.0": {AuthCapability: true, V3rpcCapability: true}, "3.2.0": {AuthCapability: true, V3rpcCapability: true}, + "3.3.0": {AuthCapability: true, V3rpcCapability: true}, } enableMapMu sync.RWMutex From bd9bd71a61ab08d05584d97cf4292fde9b27b332 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Wed, 20 Dec 2017 12:33:25 -0800 Subject: [PATCH 2/2] rafthttp: add 3.3.0 support Signed-off-by: Gyuho Lee --- rafthttp/stream.go | 1 + 1 file changed, 1 insertion(+) diff --git a/rafthttp/stream.go b/rafthttp/stream.go index 9dfe22148..af49c18b1 100644 --- a/rafthttp/stream.go +++ b/rafthttp/stream.go @@ -55,6 +55,7 @@ var ( "3.0.0": {streamTypeMsgAppV2, streamTypeMessage}, "3.1.0": {streamTypeMsgAppV2, streamTypeMessage}, "3.2.0": {streamTypeMsgAppV2, streamTypeMessage}, + "3.3.0": {streamTypeMsgAppV2, streamTypeMessage}, } )