You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2017/04/27 00:38:00 UTC

mesos git commit: Fixed typo in slave.cpp.

Repository: mesos
Updated Branches:
  refs/heads/master 87b793dbb -> 6670c0709


Fixed typo in slave.cpp.

s/found mount/find mount/


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

Branch: refs/heads/master
Commit: 6670c07094ce9ed75a6488fa177fa2141b6b1bcd
Parents: 87b793d
Author: Vinod Kone <vi...@gmail.com>
Authored: Wed Apr 26 17:36:53 2017 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Wed Apr 26 17:37:40 2017 -0700

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/6670c070/src/slave/slave.cpp
----------------------------------------------------------------------
diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp
index 4ff522e..8b8078d 100644
--- a/src/slave/slave.cpp
+++ b/src/slave/slave.cpp
@@ -463,7 +463,7 @@ void Slave::initialize()
 
         if (!foundEntry) {
           EXIT(EXIT_FAILURE)
-            << "Failed to found mount '" << realpath.get()
+            << "Failed to find mount '" << realpath.get()
             << "' in /proc/mounts";
         }
 #else // __linux__