From 41539df490dc1889782f658616903a2ab04ef982 Mon Sep 17 00:00:00 2001 From: Jingyi Hu Date: Fri, 25 Oct 2019 18:27:40 -0700 Subject: [PATCH] integration: disable TestV3AuthOldRevConcurrent Disable TestV3AuthOldRevConcurrent for now. See https://github.com/etcd-io/etcd/pull/10468#issuecomment-463253361 --- integration/v3_auth_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/integration/v3_auth_test.go b/integration/v3_auth_test.go index 76c73b0ec..d627fbe80 100644 --- a/integration/v3_auth_test.go +++ b/integration/v3_auth_test.go @@ -357,6 +357,7 @@ func TestV3AuthNonAuthorizedRPCs(t *testing.T) { } func TestV3AuthOldRevConcurrent(t *testing.T) { + t.Skip() // TODO(jingyih): re-enable the test when #10408 is fixed. defer testutil.AfterTest(t) clus := NewClusterV3(t, &ClusterConfig{Size: 1}) defer clus.Terminate(t)