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/10/12 02:11:02 UTC

mesos git commit: Removed an invalid comment for completed executor in the agent.

Repository: mesos
Updated Branches:
  refs/heads/master e361aaeda -> ca3d82165


Removed an invalid comment for completed executor in the agent.

This was a remnant from https://reviews.apache.org/r/51399/.


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

Branch: refs/heads/master
Commit: ca3d8216529670e1ca210a0c0d9ca157344b663e
Parents: e361aae
Author: Benjamin Mahler <bm...@apache.org>
Authored: Tue Oct 11 19:10:21 2016 -0700
Committer: Benjamin Mahler <bm...@apache.org>
Committed: Tue Oct 11 19:10:21 2016 -0700

----------------------------------------------------------------------
 src/slave/slave.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/ca3d8216/src/slave/slave.hpp
----------------------------------------------------------------------
diff --git a/src/slave/slave.hpp b/src/slave/slave.hpp
index 63bf5c8..d8c5873 100644
--- a/src/slave/slave.hpp
+++ b/src/slave/slave.hpp
@@ -1024,8 +1024,8 @@ struct Framework
   // Current running executors.
   hashmap<ExecutorID, Executor*> executors;
 
-  // Up to maxCompletedExecutorsPerFramework completed executors.
   boost::circular_buffer<process::Owned<Executor>> completedExecutors;
+
 private:
   Framework(const Framework&);              // No copying.
   Framework& operator=(const Framework&); // No assigning.