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

git commit: Updated --isolation help message for slave.

Repository: mesos
Updated Branches:
  refs/heads/master 0abfbd48b -> 19b202732


Updated --isolation help message for slave.

Now also mentions the --modules flag.

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


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

Branch: refs/heads/master
Commit: 19b202732cee6459bae0ceb588368e6d40c98414
Parents: 0abfbd4
Author: Kapil Arya <ka...@mesosphere.io>
Authored: Tue Nov 4 02:45:21 2014 +0100
Committer: Till Toenshoff <to...@me.com>
Committed: Tue Nov 4 02:45:21 2014 +0100

----------------------------------------------------------------------
 src/slave/flags.hpp | 3 ++-
 src/tests/flags.hpp | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/19b20273/src/slave/flags.hpp
----------------------------------------------------------------------
diff --git a/src/slave/flags.hpp b/src/slave/flags.hpp
index 838ca85..efbd35d 100644
--- a/src/slave/flags.hpp
+++ b/src/slave/flags.hpp
@@ -65,7 +65,8 @@ public:
         "Isolation mechanisms to use, e.g., 'posix/cpu,posix/mem', or\n"
         "'cgroups/cpu,cgroups/mem', or network/port_mapping\n"
         "(configure with flag: --with-network-isolator to enable),\n"
-        "or 'external'.",
+        "or 'external', or load an alternate isolator module using\n"
+        "the --modules flag.",
         "posix/cpu,posix/mem");
 
     add(&Flags::default_role,

http://git-wip-us.apache.org/repos/asf/mesos/blob/19b20273/src/tests/flags.hpp
----------------------------------------------------------------------
diff --git a/src/tests/flags.hpp b/src/tests/flags.hpp
index 0b30083..0d3db6c 100644
--- a/src/tests/flags.hpp
+++ b/src/tests/flags.hpp
@@ -130,7 +130,8 @@ public:
         "Isolation mechanisms to use, e.g., 'posix/cpu,posix/mem', or\n"
         "'cgroups/cpu,cgroups/mem', or network/port_mapping\n"
         "(configure with flag: --with-network-isolator to enable),\n"
-        "or 'external'.");
+        "or 'external', or load an alternate isolator module using\n"
+        "the --modules flag.");
 
     // This help message is duplicated from master/flags.hpp and
     // should always be kept in sync with that.