-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/67596/
-----------------------------------------------------------
(Updated June 15, 2018, 11:29 p.m.)
Review request for mesos, Jie Yu, Joseph Wu, and Kevin Klues.
Changes
-------
Improved test isolation.
Bugs: MESOS-6622
https://issues.apache.org/jira/browse/MESOS-6622
Repository: mesos
Description (updated)
-------
This test is flaky because it tries to download the 1GB 'nvidia/cuda'
image from Docker Hub, which might take more than 1 minute and cause
the command executor unable to register in time.
This patch fixes this problem by using the default executor, which does
not wait for fetching task images before registration. If the image
fetch stalls more than 1 minute, the container will fail because of the
`--fetcher_stall_timeout` agent flag.
The time we wait for `TASK_FINISHED` is also extended to 180 seconds.
Diffs (updated)
-----
src/tests/containerizer/nvidia_gpu_isolator_tests.cpp
d8c3e6d08a70bd129d8ac9c336be7a2bf7a4b0b2
Diff: https://reviews.apache.org/r/67596/diff/2/
Changes: https://reviews.apache.org/r/67596/diff/1-2/
Testing
-------
sudo make check
Thanks,
Chun-Hung Hsiao