You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by jo...@apache.org on 2016/02/10 18:12:15 UTC

[4/8] 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/d631e8ff
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/d631e8ff
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/d631e8ff

Branch: refs/heads/master
Commit: d631e8ff320f7108a1316f3e8451c049661eb49b
Parents: 2cf7fc8
Author: Joris Van Remoortere <jo...@gmail.com>
Authored: Thu Feb 4 15:27:54 2016 -0500
Committer: Joris Van Remoortere <jo...@gmail.com>
Committed: Wed Feb 10 18:12:05 2016 +0100

----------------------------------------------------------------------
 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/d631e8ff/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 c2e252e..a04802e 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());