You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ya...@apache.org on 2014/06/23 20:25:46 UTC

[3/6] git commit: Added a log line to indicate framework rate limiting is enabled.

Added a log line to indicate framework rate limiting is enabled.

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


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

Branch: refs/heads/master
Commit: bd8343a634152ca1cb3c6043c0a4ab4f41619b4e
Parents: bdca37f
Author: Jiang Yan Xu <ya...@jxu.me>
Authored: Wed Jun 18 10:57:36 2014 -0700
Committer: Jiang Yan Xu <ya...@jxu.me>
Committed: Mon Jun 23 11:19:40 2014 -0700

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/bd8343a6/src/master/master.cpp
----------------------------------------------------------------------
diff --git a/src/master/master.cpp b/src/master/master.cpp
index 00152f5..72470da 100644
--- a/src/master/master.cpp
+++ b/src/master/master.cpp
@@ -381,6 +381,8 @@ void Master::initialize()
                 Owned<RateLimiter>(new RateLimiter(limit_.qps())))
             : Option<Owned<RateLimiter> >::none());
     }
+
+    LOG(INFO) << "Framework rate limiting enabled";
   }
 
   hashmap<string, RoleInfo> roleInfos;