You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2011/06/05 06:57:41 UTC

svn commit: r1131687 - /incubator/mesos/trunk/src/master.cpp

Author: benh
Date: Sun Jun  5 04:57:41 2011
New Revision: 1131687

URL: http://svn.apache.org/viewvc?rev=1131687&view=rev
Log:
Changing behavior of killTask() so that it doesn't call LOG(FATAL) no matter what right away. I.e. changing it to LOG(INFO).

Modified:
    incubator/mesos/trunk/src/master.cpp

Modified: incubator/mesos/trunk/src/master.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/master.cpp?rev=1131687&r1=1131686&r2=1131687&view=diff
==============================================================================
--- incubator/mesos/trunk/src/master.cpp (original)
+++ incubator/mesos/trunk/src/master.cpp Sun Jun  5 04:57:41 2011
@@ -874,7 +874,7 @@ void Master::rescindOffer(SlotOffer *off
 
 void Master::killTask(TaskInfo *task)
 {
-  LOG(FATAL) << "Killing " << task;
+  LOG(INFO) << "Killing " << task;
   Framework *framework = lookupFramework(task->frameworkId);
   Slave *slave = lookupSlave(task->slaveId);
   CHECK(framework != NULL);