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 2015/10/13 23:36:06 UTC

mesos git commit: Improved the flag help message; renamed slave to agent.

Repository: mesos
Updated Branches:
  refs/heads/master d756ff708 -> 55107d18e


Improved the flag help message; renamed slave to agent.


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

Branch: refs/heads/master
Commit: 55107d18e24ad20170fa0e5e0e766652b590d4bd
Parents: d756ff7
Author: Benjamin Mahler <be...@gmail.com>
Authored: Tue Oct 13 14:35:50 2015 -0700
Committer: Benjamin Mahler <be...@gmail.com>
Committed: Tue Oct 13 14:35:50 2015 -0700

----------------------------------------------------------------------
 src/master/http.cpp | 2 +-
 src/slave/http.cpp  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/55107d18/src/master/http.cpp
----------------------------------------------------------------------
diff --git a/src/master/http.cpp b/src/master/http.cpp
index 19dedcf..3ca3725 100644
--- a/src/master/http.cpp
+++ b/src/master/http.cpp
@@ -525,7 +525,7 @@ Future<Response> Master::Http::scheduler(const Request& request) const
 
 string Master::Http::FLAGS_HELP()
 {
-  return HELP(TLDR("Information about master flags."));
+  return HELP(TLDR("Exposes the master's flag configuration."));
 }
 
 

http://git-wip-us.apache.org/repos/asf/mesos/blob/55107d18/src/slave/http.cpp
----------------------------------------------------------------------
diff --git a/src/slave/http.cpp b/src/slave/http.cpp
index 5002db1..80bda34 100644
--- a/src/slave/http.cpp
+++ b/src/slave/http.cpp
@@ -323,7 +323,7 @@ Future<Response> Slave::Http::executor(const Request& request) const
 
 string Slave::Http::FLAGS_HELP()
 {
-  return HELP(TLDR("Information about slave flags."));
+  return HELP(TLDR("Exposes the agent's flag configuration."));
 }