You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bb...@apache.org on 2018/11/07 22:29:44 UTC

[mesos] 06/08: Reduced default oversubscription in parallel test runner.

This is an automated email from the ASF dual-hosted git repository.

bbannier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit d6386b29d50b4b7ffa0c0cff94e8435699f61cdc
Author: Benjamin Bannier <be...@mesosphere.io>
AuthorDate: Wed Nov 7 22:37:52 2018 +0100

    Reduced default oversubscription in parallel test runner.
    
    Review: https://reviews.apache.org/r/69274/
---
 support/mesos-gtest-runner.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/mesos-gtest-runner.py b/support/mesos-gtest-runner.py
index 9cf72af..c8f4d51 100755
--- a/support/mesos-gtest-runner.py
+++ b/support/mesos-gtest-runner.py
@@ -109,7 +109,7 @@ def parse_arguments():
 
     env_parser = argparse.ArgumentParser()
     env_parser.add_argument('-j', '--jobs', type=int,
-                            default=int(multiprocessing.cpu_count() * 1.5))
+                            default=int(multiprocessing.cpu_count()))
     env_parser.add_argument('-s', '--sequential', type=str, default='')
     env_parser.add_argument('-v', '--verbosity', type=int, default=1)