You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by mp...@apache.org on 2016/12/12 13:06:56 UTC

[1/2] kudu git commit: ts_recovery-itest: increase timeout for bootstrap

Repository: kudu
Updated Branches:
  refs/heads/master 244c6feae -> ee4672bbe


ts_recovery-itest: increase timeout for bootstrap

In ASAN builds, the replay of logs can be very slow. This just increases
the timeout waiting for restart.

Change-Id: I0507832dd9edd8ae60e74216cc4e1719f1d8c6cb
Reviewed-on: http://gerrit.cloudera.org:8080/5473
Tested-by: Kudu Jenkins
Reviewed-by: Mike Percy <mp...@apache.org>


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

Branch: refs/heads/master
Commit: 305b8c96e5fdad1ab14881e77f88900a0bb2b174
Parents: 244c6fe
Author: Todd Lipcon <to...@apache.org>
Authored: Mon Dec 12 10:20:39 2016 +0700
Committer: Mike Percy <mp...@apache.org>
Committed: Mon Dec 12 12:45:41 2016 +0000

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


http://git-wip-us.apache.org/repos/asf/kudu/blob/305b8c96/src/kudu/integration-tests/ts_recovery-itest.cc
----------------------------------------------------------------------
diff --git a/src/kudu/integration-tests/ts_recovery-itest.cc b/src/kudu/integration-tests/ts_recovery-itest.cc
index 8ab57d1..ffed6b8 100644
--- a/src/kudu/integration-tests/ts_recovery-itest.cc
+++ b/src/kudu/integration-tests/ts_recovery-itest.cc
@@ -386,7 +386,7 @@ TEST_P(Kudu969Test, Test) {
   // Restart the TS to trigger bootstrap, and wait for it to start up.
   ts->Shutdown();
   ASSERT_OK(ts->Restart());
-  ASSERT_OK(cluster_->WaitForTabletsRunning(ts, -1, MonoDelta::FromSeconds(90)));
+  ASSERT_OK(cluster_->WaitForTabletsRunning(ts, -1, MonoDelta::FromSeconds(180)));
 
   // Verify that the bootstrapped server matches the other replications, which
   // had no faults.


[2/2] kudu git commit: push_to_asf.py: Use check_output() from kudu_util

Posted by mp...@apache.org.
push_to_asf.py: Use check_output() from kudu_util

This makes the script compatible with older versions of python again.

Change-Id: I75570c408f63bc5a0a4023e9d50b888c43eca16e
Reviewed-on: http://gerrit.cloudera.org:8080/5469
Reviewed-by: Jean-Daniel Cryans <jd...@apache.org>
Tested-by: Kudu Jenkins


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

Branch: refs/heads/master
Commit: ee4672bbe0ec3544070d0bb48cd24ae9516be633
Parents: 305b8c9
Author: Mike Percy <mp...@apache.org>
Authored: Sun Dec 11 08:35:23 2016 -0800
Committer: Mike Percy <mp...@apache.org>
Committed: Mon Dec 12 12:46:04 2016 +0000

----------------------------------------------------------------------
 build-support/push_to_asf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/ee4672bb/build-support/push_to_asf.py
----------------------------------------------------------------------
diff --git a/build-support/push_to_asf.py b/build-support/push_to_asf.py
index b5216ba..f84a261 100755
--- a/build-support/push_to_asf.py
+++ b/build-support/push_to_asf.py
@@ -122,7 +122,7 @@ def rev_list(arg):
 
 def describe_commit(rev):
   """ Return a one-line description of a commit. """
-  return subprocess.check_output(
+  return check_output(
       ['git', 'log', '--color', '-n1', '--oneline', rev]).strip()