浏览代码

Merge pull request #8736 from xiang90/disable_retry

clientv3/integration: skip retry test on txn read
Xiang Li 8 年之前
父节点
当前提交
0c5ca488c1
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      clientv3/integration/txn_test.go

+ 2 - 0
clientv3/integration/txn_test.go

@@ -100,6 +100,8 @@ func TestTxnWriteFail(t *testing.T) {
 }
 
 func TestTxnReadRetry(t *testing.T) {
+	t.Skipf("skipping txn read retry test: re-enable after we do retry on txn read request")
+
 	defer testutil.AfterTest(t)
 
 	clus := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 3})