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/01/22 09:28:22 UTC

[04/10] mesos git commit: Changed member visibility in offer filter classes.

Changed member visibility in offer filter classes.

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


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

Branch: refs/heads/master
Commit: afe3a1ed1c602b54220a39b699ef9550a3bd6ed4
Parents: ecfb8d5
Author: Alexander Rukletsov <ru...@gmail.com>
Authored: Thu Jan 21 23:59:49 2016 -0800
Committer: Benjamin Mahler <be...@gmail.com>
Committed: Thu Jan 21 23:59:49 2016 -0800

----------------------------------------------------------------------
 src/master/allocator/mesos/hierarchical.cpp | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/afe3a1ed/src/master/allocator/mesos/hierarchical.cpp
----------------------------------------------------------------------
diff --git a/src/master/allocator/mesos/hierarchical.cpp b/src/master/allocator/mesos/hierarchical.cpp
index 6215e2b..2f40801 100644
--- a/src/master/allocator/mesos/hierarchical.cpp
+++ b/src/master/allocator/mesos/hierarchical.cpp
@@ -72,6 +72,7 @@ public:
     return resources.contains(_resources); // Refused resources are superset.
   }
 
+private:
   const Resources resources;
 };
 
@@ -107,6 +108,7 @@ public:
     return timeout.remaining() > Seconds(0);
   }
 
+private:
   const Timeout timeout;
 };