You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2016/02/20 17:37:38 UTC

[02/11] mesos git commit: Added a comment to explain TASK_STARTING.

Added a comment to explain TASK_STARTING.


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

Branch: refs/heads/master
Commit: 1bd06637cf75068006df72b4e8bc5433b8e6090c
Parents: 022be0a
Author: Benjamin Mahler <bm...@apache.org>
Authored: Sat Feb 20 13:04:52 2016 +0100
Committer: Benjamin Mahler <bm...@apache.org>
Committed: Sat Feb 20 14:18:35 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/1bd06637/include/mesos/mesos.proto
----------------------------------------------------------------------
diff --git a/include/mesos/mesos.proto b/include/mesos/mesos.proto
index 70e380a..5078da4 100644
--- a/include/mesos/mesos.proto
+++ b/include/mesos/mesos.proto
@@ -1216,7 +1216,7 @@ message TaskInfo {
  */
 enum TaskState {
   TASK_STAGING = 6; // Initial state. Framework status updates should not use.
-  TASK_STARTING = 0;
+  TASK_STARTING = 0; // The task is being launched by the executor.
   TASK_RUNNING = 1;
 
   // NOTE: This should only be sent when the framework has

http://git-wip-us.apache.org/repos/asf/mesos/blob/1bd06637/include/mesos/v1/mesos.proto
----------------------------------------------------------------------
diff --git a/include/mesos/v1/mesos.proto b/include/mesos/v1/mesos.proto
index 6271d2a..a1da4a0 100644
--- a/include/mesos/v1/mesos.proto
+++ b/include/mesos/v1/mesos.proto
@@ -1117,7 +1117,7 @@ message TaskInfo {
  */
 enum TaskState {
   TASK_STAGING = 6; // Initial state. Framework status updates should not use.
-  TASK_STARTING = 0;
+  TASK_STARTING = 0; // The task is being launched by the executor.
   TASK_RUNNING = 1;
 
   // NOTE: This should only be sent when the framework has