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 11:29:19 UTC

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

Author: benh
Date: Sun Jun  5 09:29:19 2011
New Revision: 1132350

URL: http://svn.apache.org/viewvc?rev=1132350&view=rev
Log:
Oops, syntax error in pushed code.

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

Modified: incubator/mesos/trunk/src/master/master.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/master/master.cpp?rev=1132350&r1=1132349&r2=1132350&view=diff
==============================================================================
--- incubator/mesos/trunk/src/master/master.cpp (original)
+++ incubator/mesos/trunk/src/master/master.cpp Sun Jun  5 09:29:19 2011
@@ -260,7 +260,7 @@ Promise<state::MasterState*> Master::get
 
     state::Slave* slave =
       new state::Slave(s->slaveId.value(), s->info.hostname(),
-                       s->info.public_hostname() + , cpus.value(),
+                       s->info.public_hostname(), cpus.value(),
                        mem.value(), s->connectTime);
 
     state->slaves.push_back(slave);