You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ne...@apache.org on 2017/05/31 18:41:54 UTC

[04/10] mesos git commit: Fixed some inaccurate comments.

Fixed some inaccurate comments.

Orphan tasks/executors are still possible in Mesos 1.2.0; they are not
possible with Mesos 1.2.1 or Mesos >= 1.3.0.

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


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

Branch: refs/heads/master
Commit: 549190e40f412cf5d234bf32905240a8684bf3f5
Parents: 3ec2d1f
Author: Neil Conway <ne...@gmail.com>
Authored: Thu May 11 16:01:52 2017 -0700
Committer: Neil Conway <ne...@gmail.com>
Committed: Wed May 31 11:40:29 2017 -0700

----------------------------------------------------------------------
 include/mesos/master/master.proto | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/549190e4/include/mesos/master/master.proto
----------------------------------------------------------------------
diff --git a/include/mesos/master/master.proto b/include/mesos/master/master.proto
index 841e207..515a654 100644
--- a/include/mesos/master/master.proto
+++ b/include/mesos/master/master.proto
@@ -359,8 +359,7 @@ message Response {
     // frameworks are now reported in the `frameworks` list with the
     // `recovered` field set to true.
     //
-    // TODO(neilc): Remove this field after a deprecation cycle starting
-    // in Mesos 1.2.
+    // TODO(neilc): Remove this field in Mesos 2.0.
     repeated FrameworkInfo recovered_frameworks = 3;
   }
 
@@ -375,10 +374,10 @@ message Response {
 
     repeated Executor executors = 1;
 
-    // As of Mesos 1.2, this field will always be empty.
+    // As of Mesos 1.3.0, this field is deprecated and will always be
+    // empty.
     //
-    // TODO(neilc): Remove this field after a deprecation cycle starting
-    // in Mesos 1.2.
+    // TODO(neilc): Remove this field in Mesos 2.0.
     repeated Executor orphan_executors = 2;
   }
 
@@ -408,10 +407,10 @@ message Response {
     // acknowledged by the scheduler.
     repeated Task completed_tasks = 3;
 
-    // As of Mesos 1.2, this field will always be empty.
+    // As of Mesos 1.3.0, this field is deprecated and will always be
+    // empty.
     //
-    // TODO(neilc): Remove this field after a deprecation cycle starting
-    // in Mesos 1.2.
+    // TODO(neilc): Remove this field in Mesos 2.0.
     repeated Task orphan_tasks = 4;
   }