You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2014/06/04 03:04:03 UTC

git commit: Increased the registry store timeout for tests.

Repository: mesos
Updated Branches:
  refs/heads/master 4a91f9a46 -> 81c05c973


Increased the registry store timeout for tests.


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

Branch: refs/heads/master
Commit: 81c05c973afdb0536de61900320ca44d8ce7c106
Parents: 4a91f9a
Author: Benjamin Mahler <bm...@twitter.com>
Authored: Tue Jun 3 17:56:52 2014 -0700
Committer: Benjamin Mahler <bm...@twitter.com>
Committed: Tue Jun 3 18:03:55 2014 -0700

----------------------------------------------------------------------
 src/tests/mesos.cpp | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/81c05c97/src/tests/mesos.cpp
----------------------------------------------------------------------
diff --git a/src/tests/mesos.cpp b/src/tests/mesos.cpp
index 3065ae3..ea6a1c0 100644
--- a/src/tests/mesos.cpp
+++ b/src/tests/mesos.cpp
@@ -106,6 +106,9 @@ master::Flags MesosTest::CreateMasterFlags()
   flags.registry = "replicated_log";
   flags.registry_strict = true;
 
+  // On many test VMs, this default is too small.
+  flags.registry_store_timeout = flags.registry_store_timeout * 2;
+
   return flags;
 }