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

[1/2] mesos git commit: Fixed indentation of HealthCheck files in src/Makefile.am.

Repository: mesos
Updated Branches:
  refs/heads/master da4687c33 -> 7864eb860


Fixed indentation of HealthCheck files in src/Makefile.am.

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


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

Branch: refs/heads/master
Commit: 9eea59ebed2ba44ce51c90b61a180a1a3c32e32a
Parents: da4687c
Author: haosdent huang <ha...@gmail.com>
Authored: Mon Aug 1 11:58:35 2016 +0200
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Mon Aug 1 11:58:35 2016 +0200

----------------------------------------------------------------------
 src/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/9eea59eb/src/Makefile.am
----------------------------------------------------------------------
diff --git a/src/Makefile.am b/src/Makefile.am
index a531a50..5eabc33 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -791,7 +791,7 @@ libmesos_no_3rdparty_la_SOURCES +=					\
   executor/executor.cpp							\
   executor/v0_v1executor.cpp						\
   files/files.cpp							\
-  health-check/health_checker.cpp						\
+  health-check/health_checker.cpp					\
   hdfs/hdfs.cpp								\
   hook/manager.cpp							\
   internal/devolve.cpp							\
@@ -912,7 +912,7 @@ libmesos_no_3rdparty_la_SOURCES +=					\
   examples/utils.hpp							\
   executor/v0_v1executor.hpp						\
   files/files.hpp							\
-  health-check/health_checker.hpp						\
+  health-check/health_checker.hpp					\
   hdfs/hdfs.hpp								\
   hook/manager.hpp							\
   internal/devolve.hpp							\


[2/2] mesos git commit: Fixed a typo in "launcher/executor.cpp".

Posted by al...@apache.org.
Fixed a typo in "launcher/executor.cpp".

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


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

Branch: refs/heads/master
Commit: 7864eb860cc5b6d12c4af968e85640613dc34f1d
Parents: 9eea59e
Author: haosdent huang <ha...@gmail.com>
Authored: Mon Aug 1 11:59:00 2016 +0200
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Mon Aug 1 11:59:00 2016 +0200

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/7864eb86/src/launcher/executor.cpp
----------------------------------------------------------------------
diff --git a/src/launcher/executor.cpp b/src/launcher/executor.cpp
index b775931..9333dc0 100644
--- a/src/launcher/executor.cpp
+++ b/src/launcher/executor.cpp
@@ -433,7 +433,7 @@ protected:
           .onAny([](const Future<Nothing>& future) {
             // Only possible to be a failure.
             if (future.isFailed()) {
-              cerr << "Healh check failed" << endl;
+              cerr << "Health check failed" << endl;
             }
           });
       }