You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by tn...@apache.org on 2016/03/04 01:50:12 UTC

mesos git commit: Fixed typo in failover timeout warning message.

Repository: mesos
Updated Branches:
  refs/heads/master a706954d7 -> 6040db884


Fixed typo in failover timeout warning message.


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

Branch: refs/heads/master
Commit: 6040db884e3e51323cf2b9461d23ceaa6af95f42
Parents: a706954
Author: Timothy Chen <tn...@apache.org>
Authored: Thu Mar 3 16:49:56 2016 -0800
Committer: Timothy Chen <tn...@apache.org>
Committed: Thu Mar 3 16:50:02 2016 -0800

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/6040db88/src/master/master.cpp
----------------------------------------------------------------------
diff --git a/src/master/master.cpp b/src/master/master.cpp
index 2be954d..07f4751 100644
--- a/src/master/master.cpp
+++ b/src/master/master.cpp
@@ -1228,7 +1228,7 @@ void Master::_exited(Framework* framework)
   if (failoverTimeout_.isSome()) {
     failoverTimeout = failoverTimeout_.get();
   } else {
-    LOG(WARNING) << "Using the default value for 'failover_timeout' because"
+    LOG(WARNING) << "Using the default value for 'failover_timeout' because "
                  << "the input value is invalid: "
                  << failoverTimeout_.error();
   }