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 2016/03/15 04:10:35 UTC

mesos git commit: Updated a log message in the HTTP API executor library.

Repository: mesos
Updated Branches:
  refs/heads/master 27ad14ac0 -> d07e69f48


Updated a log message in the HTTP API executor library.

This maintains consistent logging between the ShutdownProcesses in
the executor driver and the HTTP API executor library.

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


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

Branch: refs/heads/master
Commit: d07e69f48afd4e73bca86c60cdc768b8214e32b0
Parents: 27ad14a
Author: Alexander Rukletsov <ru...@gmail.com>
Authored: Mon Mar 14 20:08:49 2016 -0700
Committer: Benjamin Mahler <bm...@apache.org>
Committed: Mon Mar 14 20:08:49 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/d07e69f4/src/executor/executor.cpp
----------------------------------------------------------------------
diff --git a/src/executor/executor.cpp b/src/executor/executor.cpp
index 0050e22..87db4e0 100644
--- a/src/executor/executor.cpp
+++ b/src/executor/executor.cpp
@@ -99,8 +99,7 @@ public:
 protected:
   virtual void initialize()
   {
-    VLOG(1) << "Scheduling shutdown of the executor with grace period: "
-            << gracePeriod;
+    VLOG(1) << "Scheduling shutdown of the executor in " << gracePeriod;
 
     delay(gracePeriod, self(), &Self::kill);
   }