You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bb...@apache.org on 2019/01/02 11:19:48 UTC

[mesos] branch master updated: Fixed a typo in module manager log message.

This is an automated email from the ASF dual-hosted git repository.

bbannier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new 0183e64  Fixed a typo in module manager log message.
0183e64 is described below

commit 0183e6400a91a025b8dfa16d1e6deafc907797bb
Author: Benjamin Bannier <bb...@apache.org>
AuthorDate: Fri Dec 21 13:00:17 2018 +0100

    Fixed a typo in module manager log message.
    
    Review: https://reviews.apache.org/r/69608
---
 src/module/manager.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/module/manager.cpp b/src/module/manager.cpp
index 75f70a7..97b33ef 100644
--- a/src/module/manager.cpp
+++ b/src/module/manager.cpp
@@ -331,8 +331,8 @@ Try<Nothing> ModuleManager::loadManifest(const Modules& modules)
 
           if (result.isError()) {
             return Error(
-                "Error loading module '" + moduleName + "'; this is "
-                " potenatially due to duplicate module names; " +
+                "Error loading module '" + moduleName + "'; this is"
+                " potentially due to duplicate module names; " +
                 result.error());
           }