You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2014/10/08 20:45:52 UTC

[5/8] git commit: Fixed a log line in the master.

Fixed a log line in the master.

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


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

Branch: refs/heads/master
Commit: c86648479476c556b9fb2f5a710af258991ba6e7
Parents: 7c7f8dd
Author: Benjamin Mahler <bm...@twitter.com>
Authored: Mon Sep 29 12:23:12 2014 -0700
Committer: Benjamin Mahler <bm...@twitter.com>
Committed: Wed Oct 8 11:45:11 2014 -0700

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/c8664847/src/master/master.cpp
----------------------------------------------------------------------
diff --git a/src/master/master.cpp b/src/master/master.cpp
index 86dc544..e2c58d1 100644
--- a/src/master/master.cpp
+++ b/src/master/master.cpp
@@ -3929,7 +3929,7 @@ void Master::reconcile(
 void Master::addFramework(Framework* framework)
 {
   CHECK(!frameworks.registered.contains(framework->id))
-    << "Framework " << framework->id << "already exists!";
+    << "Framework " << framework->id << " already exists!";
 
   frameworks.registered[framework->id] = framework;