You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by to...@apache.org on 2016/07/20 19:04:36 UTC

incubator-kudu git commit: delete_table-test: bump timeout waiting for tablet to start

Repository: incubator-kudu
Updated Branches:
  refs/heads/master 5ded9a68a -> bb4613763


delete_table-test: bump timeout waiting for tablet to start

It seems like TestAutoTombstoneAfterRemoteBootstrapRemoteFails can fail because
it times out waiting for the tablet to restart, particularly in TSAN where
things run slowly. Just bumping the timeout to 60s vs 30s.

Change-Id: I6a3798483f506dd4cee2c685c4eff54c5df6569a
Reviewed-on: http://gerrit.cloudera.org:8080/3689
Tested-by: Kudu Jenkins
Reviewed-by: Todd Lipcon <to...@apache.org>


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

Branch: refs/heads/master
Commit: bb46137638e69205505efd5ee174edeb01cb3ef1
Parents: 5ded9a6
Author: Todd Lipcon <to...@apache.org>
Authored: Wed Jul 20 11:32:40 2016 -0700
Committer: Todd Lipcon <to...@apache.org>
Committed: Wed Jul 20 19:04:26 2016 +0000

----------------------------------------------------------------------
 src/kudu/integration-tests/delete_table-test.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/bb461376/src/kudu/integration-tests/delete_table-test.cc
----------------------------------------------------------------------
diff --git a/src/kudu/integration-tests/delete_table-test.cc b/src/kudu/integration-tests/delete_table-test.cc
index afa0008..d1fcbc3 100644
--- a/src/kudu/integration-tests/delete_table-test.cc
+++ b/src/kudu/integration-tests/delete_table-test.cc
@@ -201,7 +201,7 @@ void DeleteTableTest::WaitForAllTSToCrash() {
 
 void DeleteTableTest::WaitUntilTabletRunning(int index, const std::string& tablet_id) {
   ASSERT_OK(itest::WaitUntilTabletRunning(ts_map_[cluster_->tablet_server(index)->uuid()],
-                                          tablet_id, MonoDelta::FromSeconds(30)));
+                                          tablet_id, MonoDelta::FromSeconds(60)));
 }
 
 void DeleteTableTest::DeleteTable(const string& table_name) {