@@ -51,13 +51,12 @@ using namespace mesos;
51
51
using namespace process ;
52
52
53
53
using mesos::slave::ContainerLogger;
54
+ using mesos::slave::ContainerIO;
54
55
55
56
namespace mesos {
56
57
namespace internal {
57
58
namespace logger {
58
59
59
- using SubprocessInfo = ContainerLogger::SubprocessInfo;
60
-
61
60
class ExternalContainerLoggerProcess :
62
61
public Process<ExternalContainerLoggerProcess>
63
62
{
@@ -66,7 +65,7 @@ class ExternalContainerLoggerProcess :
66
65
67
66
// Spawns two subprocesses that should read from stdin to receive the stdout
68
67
// and stderr log streams from the task.
69
- Future<SubprocessInfo > prepare (
68
+ Future<ContainerIO > prepare (
70
69
const ExecutorInfo& executorInfo,
71
70
const std::string& sandboxDirectory,
72
71
const Option<std::string>& user)
@@ -91,7 +90,7 @@ class ExternalContainerLoggerProcess :
91
90
}
92
91
93
92
// 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
95
94
// represented. The `Subprocess` spawned below owns the read-end
96
95
// of the pipe and will be solely responsible for closing that end.
97
96
// The ownership of the write-end will be passed to the caller
@@ -199,9 +198,9 @@ class ExternalContainerLoggerProcess :
199
198
}
200
199
201
200
// 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 ());
205
204
return info;
206
205
}
207
206
protected:
@@ -229,7 +228,7 @@ Try<Nothing> ExternalContainerLogger::initialize()
229
228
return Nothing ();
230
229
}
231
230
232
- Future<ContainerLogger::SubprocessInfo >
231
+ Future<ContainerIO >
233
232
ExternalContainerLogger::prepare (
234
233
const ExecutorInfo& executorInfo,
235
234
const std::string& sandboxDirectory,
0 commit comments