You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by an...@apache.org on 2017/09/29 20:31:38 UTC

[05/11] mesos git commit: Added the `REASON_AGENT_REMOVED_BY_OPERATOR` to the mesos protos.

Added the `REASON_AGENT_REMOVED_BY_OPERATOR` to the mesos protos.

Review: https://reviews.apache.org/r/62476/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/ec1e98df
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/ec1e98df
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/ec1e98df

Branch: refs/heads/master
Commit: ec1e98df48dc53cc31e93265a996b4cccefba32e
Parents: 50f3549
Author: Anand Mazumdar <an...@apache.org>
Authored: Fri Sep 29 11:56:22 2017 -0700
Committer: Anand Mazumdar <an...@apache.org>
Committed: Fri Sep 29 13:31:08 2017 -0700

----------------------------------------------------------------------
 include/mesos/mesos.proto    | 1 +
 include/mesos/v1/mesos.proto | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/ec1e98df/include/mesos/mesos.proto
----------------------------------------------------------------------
diff --git a/include/mesos/mesos.proto b/include/mesos/mesos.proto
index 3b2d6bb..1bfcc5b 100644
--- a/include/mesos/mesos.proto
+++ b/include/mesos/mesos.proto
@@ -2201,6 +2201,7 @@ message TaskStatus {
     REASON_RESOURCES_UNKNOWN = 18;
     REASON_SLAVE_DISCONNECTED = 10;
     REASON_SLAVE_REMOVED = 11;
+    REASON_SLAVE_REMOVED_BY_OPERATOR = 31;
     REASON_SLAVE_RESTARTED = 12;
     REASON_SLAVE_UNKNOWN = 13;
     REASON_TASK_KILLED_DURING_LAUNCH = 30;

http://git-wip-us.apache.org/repos/asf/mesos/blob/ec1e98df/include/mesos/v1/mesos.proto
----------------------------------------------------------------------
diff --git a/include/mesos/v1/mesos.proto b/include/mesos/v1/mesos.proto
index 4ca4886..d742adb 100644
--- a/include/mesos/v1/mesos.proto
+++ b/include/mesos/v1/mesos.proto
@@ -2184,6 +2184,7 @@ message TaskStatus {
     REASON_RESOURCES_UNKNOWN = 18;
     REASON_AGENT_DISCONNECTED = 10;
     REASON_AGENT_REMOVED = 11;
+    REASON_AGENT_REMOVED_BY_OPERATOR = 31;
     REASON_AGENT_RESTARTED = 12;
     REASON_AGENT_UNKNOWN = 13;
     REASON_TASK_KILLED_DURING_LAUNCH = 30;