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 2017/05/27 01:19:58 UTC

[9/9] mesos git commit: Added logging of executor re-registration messages.

Added logging of executor re-registration messages.

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


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

Branch: refs/heads/1.3.x
Commit: 7c40f93f5d7a16424b9c9ef947c8aeaf75d75c54
Parents: 1075984
Author: Benjamin Mahler <bm...@apache.org>
Authored: Thu May 25 16:49:22 2017 -0700
Committer: Benjamin Mahler <bm...@apache.org>
Committed: Fri May 26 17:54:28 2017 -0700

----------------------------------------------------------------------
 src/slave/slave.cpp | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/7c40f93f/src/slave/slave.cpp
----------------------------------------------------------------------
diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp
index 4b7a336..ef0daa9 100644
--- a/src/slave/slave.cpp
+++ b/src/slave/slave.cpp
@@ -3969,6 +3969,10 @@ void Slave::reregisterExecutor(
         state == RUNNING || state == TERMINATING)
     << state;
 
+  LOG(INFO) << "Received re-registration message from"
+            << " executor '" << executorId << "'"
+            << " of framework " << frameworkId;
+
   if (state == TERMINATING) {
     LOG(WARNING) << "Shutting down executor '" << executorId << "'"
                  << " of framework " << frameworkId