You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2016/04/25 23:36:16 UTC

[35/48] mesos git commit: Mesos: Disambiguated call to 'subprocess' in linux launcher.

Mesos: Disambiguated call to 'subprocess' in linux launcher.

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


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

Branch: refs/heads/0.27.x
Commit: 66d6a4d69432b2a61d91b5e6c2c8e6e4571e0f9d
Parents: 4586166
Author: Joris Van Remoortere <jo...@gmail.com>
Authored: Thu Feb 4 15:27:54 2016 -0500
Committer: Joris Van Remoortere <jo...@gmail.com>
Committed: Tue Feb 16 18:21:10 2016 -0500

----------------------------------------------------------------------
 src/slave/containerizer/mesos/linux_launcher.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/66d6a4d6/src/slave/containerizer/mesos/linux_launcher.cpp
----------------------------------------------------------------------
diff --git a/src/slave/containerizer/mesos/linux_launcher.cpp b/src/slave/containerizer/mesos/linux_launcher.cpp
index 61801ff..d4541cd 100644
--- a/src/slave/containerizer/mesos/linux_launcher.cpp
+++ b/src/slave/containerizer/mesos/linux_launcher.cpp
@@ -372,7 +372,8 @@ Try<pid_t> LinuxLauncher::fork(
       flags,
       environment,
       lambda::bind(&childSetup, pipes, setup),
-      lambda::bind(&os::clone, lambda::_1, cloneFlags));
+      lambda::bind(&os::clone, lambda::_1, cloneFlags),
+      Subprocess::Hook::None());
 
   if (child.isError()) {
     return Error("Failed to clone child process: " + child.error());