Repository: mesos
Updated Branches:
  refs/heads/master cf4ded54c -> 81cd023eb


Added logging when sending a queued task group to the executor.

We were not logging the task group before sending the queued
task group to the executor via a `LAUNCH_GROUP` event.

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


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

Branch: refs/heads/master
Commit: 81cd023eb9945a22c220edc966393dcfcdbce256
Parents: 0b1c1c8
Author: Anand Mazumdar <an...@apache.org>
Authored: Wed Sep 14 20:56:14 2016 -0700
Committer: Anand Mazumdar <an...@apache.org>
Committed: Thu Sep 15 15:50:17 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/81cd023e/src/slave/slave.cpp
----------------------------------------------------------------------
diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp
index e504b31..7f99e46 100644
--- a/src/slave/slave.cpp
+++ b/src/slave/slave.cpp
@@ -2208,6 +2208,9 @@ void Slave::__run(
       continue;
     }
 
+    LOG(INFO) << "Sending queued task group " << taskOrTaskGroup(None(), *it)
+              << " to executor " << *executor;
+
     // Add the tasks and send the task group to the executor. Since, the
     // queued tasks also include tasks from the queued task group, we
     // remove them from queued tasks.

Reply via email to