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 2016/08/12 20:15:34 UTC

mesos git commit: Sped up ExamplesTest.PersistentVolumeFramework.

Repository: mesos
Updated Branches:
  refs/heads/master 514cfc5f4 -> 7a5229819


Sped up ExamplesTest.PersistentVolumeFramework.

By lowering `tasks_per_shard`, this patch reduces the tasks lauched to
speed up `ExamplesTest.PersistentVolumeFramework`.

Review: https://reviews.apache.org/r/43558/


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

Branch: refs/heads/master
Commit: 7a5229819dccd116ce6b9e2f277a0b0c256a82c8
Parents: 514cfc5
Author: haosdent huang <ha...@gmail.com>
Authored: Fri Aug 12 13:15:12 2016 -0700
Committer: Benjamin Mahler <bm...@apache.org>
Committed: Fri Aug 12 13:15:12 2016 -0700

----------------------------------------------------------------------
 src/examples/persistent_volume_framework.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/7a522981/src/examples/persistent_volume_framework.cpp
----------------------------------------------------------------------
diff --git a/src/examples/persistent_volume_framework.cpp b/src/examples/persistent_volume_framework.cpp
index fe2837c..3cc7cf0 100644
--- a/src/examples/persistent_volume_framework.cpp
+++ b/src/examples/persistent_volume_framework.cpp
@@ -407,7 +407,7 @@ public:
     add(&tasks_per_shard,
         "tasks_per_shard",
         "The number of tasks should be launched per shard.",
-        3);
+        2);
   }
 
   Option<string> master;