Repository: mesos Updated Branches: refs/heads/master fa0d564a9 -> 02160a1ce
Added REASON_EXECUTOR_PREEMPTED as status reason. Review: https://reviews.apache.org/r/34719 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/1a7d815c Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/1a7d815c Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/1a7d815c Branch: refs/heads/master Commit: 1a7d815cdf4fb959d0b30782dc3024000e44fba8 Parents: fa0d564 Author: Niklas Nielsen <[email protected]> Authored: Tue Jun 16 17:02:26 2015 -0700 Committer: Niklas Q. Nielsen <[email protected]> Committed: Tue Jun 16 17:02:26 2015 -0700 ---------------------------------------------------------------------- include/mesos/mesos.proto | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/1a7d815c/include/mesos/mesos.proto ---------------------------------------------------------------------- diff --git a/include/mesos/mesos.proto b/include/mesos/mesos.proto index e5b9884..8df1211 100644 --- a/include/mesos/mesos.proto +++ b/include/mesos/mesos.proto @@ -883,6 +883,7 @@ message TaskStatus { // (e.g. unhealthy vs. unregistered for maintenance). enum Reason { REASON_COMMAND_EXECUTOR_FAILED = 0; + REASON_EXECUTOR_PREEMPTED = 17; REASON_EXECUTOR_TERMINATED = 1; REASON_EXECUTOR_UNREGISTERED = 2; REASON_FRAMEWORK_REMOVED = 3;
