-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/51988/
-----------------------------------------------------------
Review request for mesos and Jie Yu.
Bugs: MESOS-6186
https://issues.apache.org/jira/browse/MESOS-6186
Repository: mesos
Description
-------
In a previous iteration of attempting to make this isolator nested
aware, we (incorrectly) decided to return a 'Failure()' in 'watch()'
for nested containers. However, we shouldn't just blindly fail this
call for nested containers. Instead we should just return a 'Future'
that will never be satisfied. This way it is safe to call 'watch()'
for nested containers, without any unwanted side effects.
This commit fixes this issue.
Diffs
-----
src/slave/containerizer/mesos/isolators/cgroups/cgroups.cpp
ecfa5dbd538c967961e983abaeeefddf273a6e9e
Diff: https://reviews.apache.org/r/51988/diff/
Testing
-------
$ GTEST_FILTER="" make -j check
$ sudo src/mesos-tests
Thanks,
Kevin Klues