You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ka...@apache.org on 2017/05/18 19:12:00 UTC

mesos git commit: Disable port-mapping isolator by default.

Repository: mesos
Updated Branches:
  refs/heads/master 20dee4190 -> 2aafd7d60


Disable port-mapping isolator by default.

The corresponding flag (--enable-port-mapping-isolator) was accidentally
enabled by-default in 20dee4190838b5bc7eb9cb524af413e3fe3fe082
(https://reviews.apache.org/r/59193/).

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


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

Branch: refs/heads/master
Commit: 2aafd7d60dd1a91de22d185cc73d8df95206f57b
Parents: 20dee41
Author: Kapil Arya <ka...@mesosphere.io>
Authored: Thu May 18 13:20:50 2017 -0400
Committer: Kapil Arya <ka...@mesosphere.io>
Committed: Thu May 18 14:28:10 2017 -0400

----------------------------------------------------------------------
 configure.ac | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/2aafd7d6/configure.ac
----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index d523670..aa6d1eb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -189,8 +189,8 @@ AC_ARG_ENABLE([debug],
 
 AC_ARG_ENABLE([port-mapping-isolator],
               AS_HELP_STRING([--enable-port-mapping-isolator],
-                             [enable port mapping isolator]),
-              [], [enable_port_mapping_isolator=yes])
+                             [enable port mapping network isolator]),
+              [], [enable_port_mapping_isolator=no])
 
 AC_ARG_ENABLE([java],
               AS_HELP_STRING([--disable-java],
@@ -342,8 +342,9 @@ AC_ARG_WITH([libprocess],
 AC_ARG_WITH([network-isolator],
             AS_HELP_STRING([--with-network-isolator],
                            [builds the network isolator]),
-            [AC_MSG_WARN(["--with-network-isolator is being depreciated, please use --enable-port-mapping-isolator instead."])],
-            [enable_port_mapping_isolator=yes])
+            [AC_MSG_WARN([--with-network-isolator is being deprecated, please use --enable-port-mapping-isolator instead.]);
+             enable_port_mapping_isolator=yes],
+            [])
 
 AC_ARG_WITH([nl],
             AS_HELP_STRING([--with-nl=@<:@DIR@:>@],