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/26 23:29:56 UTC

[3/6] 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/610321a8
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/610321a8
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/610321a8

Branch: refs/heads/master
Commit: 610321a86a182719ca4234e79f2cb09a08884643
Parents: b6b2344
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 16:29:44 2017 -0700

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/610321a8/src/slave/slave.cpp
----------------------------------------------------------------------
diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp
index 2eb9034..6a2f521 100644
--- a/src/slave/slave.cpp
+++ b/src/slave/slave.cpp
@@ -3988,6 +3988,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