Skip to content

Commit 4767390

Browse files
Upgrade to support Mesos 1.3
1 parent 3387605 commit 4767390

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

src/lib_externallogger.cpp

+7-8
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,12 @@ using namespace mesos;
5151
using namespace process;
5252

5353
using mesos::slave::ContainerLogger;
54+
using mesos::slave::ContainerIO;
5455

5556
namespace mesos {
5657
namespace internal {
5758
namespace logger {
5859

59-
using SubprocessInfo = ContainerLogger::SubprocessInfo;
60-
6160
class ExternalContainerLoggerProcess :
6261
public Process<ExternalContainerLoggerProcess>
6362
{
@@ -66,7 +65,7 @@ class ExternalContainerLoggerProcess :
6665

6766
// Spawns two subprocesses that should read from stdin to receive the stdout
6867
// and stderr log streams from the task.
69-
Future<SubprocessInfo> prepare(
68+
Future<ContainerIO> prepare(
7069
const ExecutorInfo& executorInfo,
7170
const std::string& sandboxDirectory,
7271
const Option<std::string>& user)
@@ -91,7 +90,7 @@ class ExternalContainerLoggerProcess :
9190
}
9291

9392
// NOTE: We manually construct a pipe here instead of using
94-
// `Subprocess::PIPE` so that the ownership of the FDs is properly
93+
// `ContainerIO::PIPE` so that the ownership of the FDs is properly
9594
// represented. The `Subprocess` spawned below owns the read-end
9695
// of the pipe and will be solely responsible for closing that end.
9796
// The ownership of the write-end will be passed to the caller
@@ -199,9 +198,9 @@ class ExternalContainerLoggerProcess :
199198
}
200199

201200
// The ownership of these FDs is given to the caller of this function.
202-
ContainerLogger::SubprocessInfo info;
203-
info.out = SubprocessInfo::IO::FD(outfds.write.get());
204-
info.err = SubprocessInfo::IO::FD(errfds.write.get());
201+
ContainerIO info;
202+
info.out = ContainerIO::IO::FD(outfds.write.get());
203+
info.err = ContainerIO::IO::FD(errfds.write.get());
205204
return info;
206205
}
207206
protected:
@@ -229,7 +228,7 @@ Try<Nothing> ExternalContainerLogger::initialize()
229228
return Nothing();
230229
}
231230

232-
Future<ContainerLogger::SubprocessInfo>
231+
Future<ContainerIO>
233232
ExternalContainerLogger::prepare(
234233
const ExecutorInfo& executorInfo,
235234
const std::string& sandboxDirectory,

src/lib_externallogger.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class ExternalContainerLogger : public mesos::slave::ContainerLogger
110110

111111
// Tells the subprocess to redirect the executor/task's stdout and stderr
112112
// to the external command.
113-
virtual process::Future<mesos::slave::ContainerLogger::SubprocessInfo>
113+
virtual process::Future<mesos::slave::ContainerIO>
114114
prepare(
115115
const ExecutorInfo& executorInfo,
116116
const std::string& sandboxDirectory,

0 commit comments

Comments
 (0)