You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by gr...@apache.org on 2017/12/08 17:14:01 UTC

mesos git commit: Fixed the executor API endpoint help.

Repository: mesos
Updated Branches:
  refs/heads/master c85c123a0 -> 6ddb48e6c


Fixed the executor API endpoint help.

Authentication was recently added to the V1 executor HTTP
API. This patch updates the endpoint help to reflect this.

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


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

Branch: refs/heads/master
Commit: 6ddb48e6c0e97234f545940a2d98b6b7a228bcd9
Parents: c85c123
Author: Greg Mann <gr...@mesosphere.io>
Authored: Fri Dec 8 09:03:40 2017 -0800
Committer: Greg Mann <gr...@gmail.com>
Committed: Fri Dec 8 09:03:55 2017 -0800

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/6ddb48e6/src/slave/http.cpp
----------------------------------------------------------------------
diff --git a/src/slave/http.cpp b/src/slave/http.cpp
index 49278a3..3de874c 100644
--- a/src/slave/http.cpp
+++ b/src/slave/http.cpp
@@ -635,7 +635,7 @@ string Http::EXECUTOR_HELP() {
         "",
         "Returns 202 Accepted for all other Call messages iff the",
         "request is accepted."),
-    AUTHENTICATION(false));
+    AUTHENTICATION(true));
 }