Repository: mesos Updated Branches: refs/heads/master 0e7f08786 -> 42f43ceb3
Fixed a typo in a log message. Review: https://reviews.apache.org/r/57838/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/42f43ceb Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/42f43ceb Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/42f43ceb Branch: refs/heads/master Commit: 42f43ceb3b4b375357281030fb3816e548dac763 Parents: 0e7f087 Author: Ilya Pronin <[email protected]> Authored: Mon Mar 27 09:50:53 2017 -0700 Committer: Michael Park <[email protected]> Committed: Mon Mar 27 09:50:53 2017 -0700 ---------------------------------------------------------------------- src/slave/slave.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/42f43ceb/src/slave/slave.cpp ---------------------------------------------------------------------- diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp index 892b66d..c8479d7 100644 --- a/src/slave/slave.cpp +++ b/src/slave/slave.cpp @@ -3184,7 +3184,7 @@ void Slave::updateFramework( break; case Framework::RUNNING: { LOG(INFO) << "Updating info for framework " << frameworkId - << (pid != UPID() ? "with pid updated to " + stringify(pid) + << (pid != UPID() ? " with pid updated to " + stringify(pid) : ""); // The framework info was added in 1.3, so it will not be set
