You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by jd...@apache.org on 2017/11/01 22:22:49 UTC

kudu git commit: [client-test] Reduce flakyness of TestWriteWithDeadTabletServer

Repository: kudu
Updated Branches:
  refs/heads/branch-1.2.x da6ded64d -> 330794570


[client-test] Reduce flakyness of TestWriteWithDeadTabletServer

This test fails often due to an unexpected reason for the write
timeout. This is related to KUDU-1466.

I just commented out the assertion and left a TODO to reenable
once we address the jira. Also added some info to the jira
itself.

Change-Id: Ice347a30c71b1cb3937cd1b30b0744fcd2dae0cf
Reviewed-on: http://gerrit.cloudera.org:8080/6198
Tested-by: Kudu Jenkins
Reviewed-by: Todd Lipcon <to...@apache.org>
(cherry picked from commit 02ce2a8a23fb127697c10dffea84dcfa2f2b3933)
Reviewed-on: http://gerrit.cloudera.org:8080/8429
Reviewed-by: Jean-Daniel Cryans <jd...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/33079457
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/33079457
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/33079457

Branch: refs/heads/branch-1.2.x
Commit: 3307945709eabf480c86ca00d51a513304294db7
Parents: da6ded6
Author: David Alves <dr...@apache.org>
Authored: Tue Feb 28 19:09:25 2017 -0800
Committer: Jean-Daniel Cryans <jd...@apache.org>
Committed: Wed Nov 1 22:22:34 2017 +0000

----------------------------------------------------------------------
 src/kudu/client/client-test.cc | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/33079457/src/kudu/client/client-test.cc
----------------------------------------------------------------------
diff --git a/src/kudu/client/client-test.cc b/src/kudu/client/client-test.cc
index 8af6954..7f956e4 100644
--- a/src/kudu/client/client-test.cc
+++ b/src/kudu/client/client-test.cc
@@ -2183,7 +2183,10 @@ void ClientTest::DoTestWriteWithDeadServer(WhichServerToKill which) {
       break;
     case DEAD_TSERVER:
       ASSERT_TRUE(error->status().IsTimedOut());
-      ASSERT_STR_CONTAINS(error->status().ToString(), "Connection refused");
+      // TODO(KUDU-1466) Re-enable this assertion once the jira gets solved. We can't actually
+      // make an assertion on the reason for the timeout since sometimes tablet server connection
+      // errors get reported as GetTabletLocations timeouts.
+      // ASSERT_STR_CONTAINS(error->status().ToString(), "Connection refused");
       break;
   }