From ec3c2d23a36776cce80e9b124b49671209dc3677 Mon Sep 17 00:00:00 2001 From: Yicheng Qin Date: Wed, 4 Nov 2015 14:30:35 -0800 Subject: [PATCH] *: update feature maps to adopt v2.3.0 --- etcdserver/etcdhttp/capability.go | 1 + rafthttp/stream.go | 1 + 2 files changed, 2 insertions(+) diff --git a/etcdserver/etcdhttp/capability.go b/etcdserver/etcdhttp/capability.go index d69bea032..1f5ce686e 100644 --- a/etcdserver/etcdhttp/capability.go +++ b/etcdserver/etcdhttp/capability.go @@ -37,6 +37,7 @@ var ( capabilityMaps = map[string]map[capability]bool{ "2.1.0": {authCapability: true}, "2.2.0": {authCapability: true}, + "2.3.0": {authCapability: true}, } enableMapMu sync.Mutex diff --git a/rafthttp/stream.go b/rafthttp/stream.go index e83392e30..e01681239 100644 --- a/rafthttp/stream.go +++ b/rafthttp/stream.go @@ -48,6 +48,7 @@ var ( "2.0.0": {}, "2.1.0": {streamTypeMsgAppV2, streamTypeMessage}, "2.2.0": {streamTypeMsgAppV2, streamTypeMessage}, + "2.3.0": {streamTypeMsgAppV2, streamTypeMessage}, } )