Repository: mesos
Updated Branches:
  refs/heads/master 73bb00684 -> 4fdb3b9d7


Logged when an offer is removed.

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


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

Branch: refs/heads/master
Commit: 4fdb3b9d762911b8af054ebd5ea984188b251581
Parents: 73bb006
Author: Alexander Rukletsov <ruklet...@gmail.com>
Authored: Fri Aug 4 12:17:33 2017 +0200
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Fri Aug 4 12:17:33 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/4fdb3b9d/src/master/master.cpp
----------------------------------------------------------------------
diff --git a/src/master/master.cpp b/src/master/master.cpp
index 7bb3adf..7f38a5e 100644
--- a/src/master/master.cpp
+++ b/src/master/master.cpp
@@ -9161,6 +9161,7 @@ void Master::removeOffer(Offer* offer, bool rescind)
   }
 
   // Delete it.
+  LOG(INFO) << "Removing offer " << offer->id();
   offers.erase(offer->id());
   delete offer;
 }

Reply via email to