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/13 00:59:23 UTC

[6/7] mesos git commit: Avoided returning prematurely in an agent handler.

Avoided returning prematurely in an agent handler.

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


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

Branch: refs/heads/master
Commit: 01832c0212c46d769d2023c61f2afd22fd21daa2
Parents: 5c91546
Author: Greg Mann <gr...@mesosphere.io>
Authored: Tue Dec 12 16:19:00 2017 -0800
Committer: Greg Mann <gr...@gmail.com>
Committed: Tue Dec 12 16:55:47 2017 -0800

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/01832c02/src/slave/slave.cpp
----------------------------------------------------------------------
diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp
index 5869e73..9584326 100644
--- a/src/slave/slave.cpp
+++ b/src/slave/slave.cpp
@@ -7225,7 +7225,7 @@ void Slave::handleResourceProviderMessage(
                      << update.status().operation_id() << "' (uuid: "
                      << operationUUID->toString() << ") for framework "
                      << update.framework_id();
-        return;
+        break;
       }
 
       updateOfferOperation(operation, update);