This is an automated email from the ASF dual-hosted git repository. gilbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mesos.git
commit f24c54e85e08bc9c8b118cce29ad487661a0ffc6 Author: Qian Zhang <[email protected]> AuthorDate: Tue Jun 11 15:50:43 2019 -0700 Supported file operations for command tasks. Review: https://reviews.apache.org/r/70826/ --- src/launcher/executor.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/launcher/executor.cpp b/src/launcher/executor.cpp index fa4bcaa..38d8261 100644 --- a/src/launcher/executor.cpp +++ b/src/launcher/executor.cpp @@ -494,6 +494,9 @@ protected: if (taskLaunchInfo.isSome()) { launchInfo.mutable_mounts()->CopyFrom(taskLaunchInfo->mounts()); + launchInfo.mutable_file_operations()->CopyFrom( + taskLaunchInfo->file_operations()); + launchInfo.mutable_pre_exec_commands()->CopyFrom( taskLaunchInfo->pre_exec_commands());
