You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by al...@apache.org on 2017/07/10 16:46:14 UTC

mesos git commit: Fixed cherry-pick build error.

Repository: mesos
Updated Branches:
  refs/heads/1.1.x 39606e103 -> 915518a03


Fixed cherry-pick build error.


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

Branch: refs/heads/1.1.x
Commit: 915518a032dc0d5cf880d5dfd6b65a31ee2994f8
Parents: 39606e1
Author: Alexander Rukletsov <al...@apache.org>
Authored: Mon Jul 10 18:43:22 2017 +0200
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Mon Jul 10 18:43:22 2017 +0200

----------------------------------------------------------------------
 3rdparty/libprocess/src/process.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/915518a0/3rdparty/libprocess/src/process.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/process.cpp b/3rdparty/libprocess/src/process.cpp
index 4a11bbf..50c081c 100644
--- a/3rdparty/libprocess/src/process.cpp
+++ b/3rdparty/libprocess/src/process.cpp
@@ -641,7 +641,7 @@ static Message* parse(Request* request)
 
   // Check that URL path is present and starts with '/'.
   if (request.url.path.find('/') != 0) {
-    return Failure("Request URL path must start with '/'");
+    return nullptr;
   }
 
   // Now determine 'to'.