Repository: mesos Updated Branches: refs/heads/master ffddcfb53 -> 6e5212e4c
Fixed log message in Master::statusUpdate(). Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/6e5212e4 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/6e5212e4 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/6e5212e4 Branch: refs/heads/master Commit: 6e5212e4cb187d6669397d7262e6f43e57aa4303 Parents: ffddcfb Author: Vinod Kone <[email protected]> Authored: Wed Feb 4 12:04:55 2015 -0800 Committer: Vinod Kone <[email protected]> Committed: Wed Feb 4 12:04:55 2015 -0800 ---------------------------------------------------------------------- src/master/master.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/6e5212e4/src/master/master.cpp ---------------------------------------------------------------------- diff --git a/src/master/master.cpp b/src/master/master.cpp index d04b2c4..69b945d 100644 --- a/src/master/master.cpp +++ b/src/master/master.cpp @@ -3091,6 +3091,8 @@ void Master::statusUpdate(const StatusUpdate& update, const UPID& pid) return; } + LOG(INFO) << "Status update " << update << " from slave " << *slave; + // Forward the update to the framework. forward(update, pid, framework); @@ -3104,8 +3106,6 @@ void Master::statusUpdate(const StatusUpdate& update, const UPID& pid) return; } - LOG(INFO) << "Status update " << update << " from slave " << *slave; - updateTask(task, update); // If the task is terminal and no acknowledgement is needed,
