Repository: mesos Updated Branches: refs/heads/master 18344e03e -> 20afa5e79
Updated the container failed to launch error message in the slave. Review: https://reviews.apache.org/r/25273 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/20afa5e7 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/20afa5e7 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/20afa5e7 Branch: refs/heads/master Commit: 20afa5e79572458e73acb47b9871ebc11656db35 Parents: 18344e0 Author: Timothy Chen <[email protected]> Authored: Wed Sep 3 13:51:25 2014 -0700 Committer: Vinod Kone <[email protected]> Committed: Wed Sep 3 13:51:26 2014 -0700 ---------------------------------------------------------------------- src/slave/slave.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/20afa5e7/src/slave/slave.cpp ---------------------------------------------------------------------- diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp index 5c76dd1..2c912fd 100644 --- a/src/slave/slave.cpp +++ b/src/slave/slave.cpp @@ -2500,7 +2500,9 @@ void Slave::executorLaunched( LOG(ERROR) << "Container '" << containerId << "' for executor '" << executorId << "' of framework '" << frameworkId - << "' failed to start: TaskInfo/ExecutorInfo not supported"; + << "' failed to start: None of the enabled containerizers (" + << flags.containerizers << ") could create a container for the " + << "provided TaskInfo/ExecutorInfo message."; return; }
