You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2014/06/23 21:51:32 UTC

git commit: Added a VLOG for ping message in slave.

Repository: mesos
Updated Branches:
  refs/heads/master 1ce8d31fd -> 7200cca1c


Added a VLOG for ping message in slave.


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

Branch: refs/heads/master
Commit: 7200cca1c24324ebe6cbadd04a7bc8cd98ba0595
Parents: 1ce8d31
Author: Vinod Kone <vi...@gmail.com>
Authored: Mon Jun 23 12:51:08 2014 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Mon Jun 23 12:51:08 2014 -0700

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/7200cca1/src/slave/slave.cpp
----------------------------------------------------------------------
diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp
index 91a58b9..0cb98cd 100644
--- a/src/slave/slave.cpp
+++ b/src/slave/slave.cpp
@@ -2305,6 +2305,7 @@ void Slave::executorMessage(
 
 void Slave::ping(const UPID& from, const string& body)
 {
+  VLOG(1) << "Received ping from " << from;
   send(from, "PONG");
 }