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

[mesos] branch 1.6.x updated: Updated `launchHelper` to use launcher's `whitelistFds` parameter.

This is an automated email from the ASF dual-hosted git repository.

qianzhang pushed a commit to branch 1.6.x
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/1.6.x by this push:
     new 62ab970  Updated `launchHelper` to use launcher's `whitelistFds` parameter.
62ab970 is described below

commit 62ab970078e1f8ec164ba9649e40a101d26da148
Author: Qian Zhang <zh...@gmail.com>
AuthorDate: Thu Nov 8 22:33:40 2018 +0800

    Updated `launchHelper` to use launcher's `whitelistFds` parameter.
---
 src/tests/containerizer/port_mapping_tests.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/containerizer/port_mapping_tests.cpp b/src/tests/containerizer/port_mapping_tests.cpp
index 553f530..2120358 100644
--- a/src/tests/containerizer/port_mapping_tests.cpp
+++ b/src/tests/containerizer/port_mapping_tests.cpp
@@ -352,7 +352,7 @@ protected:
         None(),
         None(),
         CLONE_NEWNET | CLONE_NEWNS,
-        vector<int_fd>());
+        {pipes[0], pipes[1]});
 
     return pid;
   }