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 05:33:44 UTC

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

Author: benh
Date: Sun Jun  5 03:33:44 2011
New Revision: 1131643

URL: http://svn.apache.org/viewvc?rev=1131643&view=rev
Log:
Bugfixing the last bugfix, which wouldnt even compile

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=1131643&r1=1131642&r2=1131643&view=diff
==============================================================================
--- incubator/mesos/trunk/src/master.cpp (original)
+++ incubator/mesos/trunk/src/master.cpp Sun Jun  5 03:33:44 2011
@@ -376,7 +376,7 @@ void Master::operator () ()
       PID senderPid;
       istringstream ss(senderStr);
       ss >> senderPid;
-      if (!ftMsg->acceptMessageAckTo(ftId, senderPid, senderStr)) {
+      if (!ftMsg->acceptMessageAckTo(senderPid, ftId, senderStr)) {
         LOG(WARNING) << "FT: Locally ignoring duplicate message with id:" << ftId;
         break;
       }