You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ya...@apache.org on 2015/09/04 07:37:54 UTC

mesos git commit: Made copy backend the default provisioner backend because it's the least restrictive.

Repository: mesos
Updated Branches:
  refs/heads/master dd66eb42d -> 99b2202a0


Made copy backend the default provisioner backend because it's the least restrictive.


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

Branch: refs/heads/master
Commit: 99b2202a09b830bb36282d233d18b6237fbb4a11
Parents: dd66eb4
Author: Jiang Yan Xu <ya...@jxu.me>
Authored: Thu Sep 3 22:37:29 2015 -0700
Committer: Jiang Yan Xu <ya...@jxu.me>
Committed: Thu Sep 3 22:37:47 2015 -0700

----------------------------------------------------------------------
 src/slave/flags.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/99b2202a/src/slave/flags.cpp
----------------------------------------------------------------------
diff --git a/src/slave/flags.cpp b/src/slave/flags.cpp
index 49fb000..7539441 100644
--- a/src/slave/flags.cpp
+++ b/src/slave/flags.cpp
@@ -69,11 +69,10 @@ mesos::internal::slave::Flags::Flags()
       "Directory the appc provisioner will store images in",
       "/tmp/mesos/store/appc");
 
-  // TODO(xujyan): Change the default to 'copy' once it's added.
   add(&Flags::appc_backend,
       "appc_backend",
       "Strategy for provisioning container rootfs from appc images",
-      "bind");
+      "copy");
 
   add(&Flags::default_role,
       "default_role",