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:23:01 UTC

svn commit: r1131560 - in /incubator/mesos/trunk/src: Makefile.in slave.cpp

Author: benh
Date: Sun Jun  5 03:23:00 2011
New Revision: 1131560

URL: http://svn.apache.org/viewvc?rev=1131560&view=rev
Log:
Typos fixed

Modified:
    incubator/mesos/trunk/src/Makefile.in
    incubator/mesos/trunk/src/slave.cpp

Modified: incubator/mesos/trunk/src/Makefile.in
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/Makefile.in?rev=1131560&r1=1131559&r2=1131560&view=diff
==============================================================================
--- incubator/mesos/trunk/src/Makefile.in (original)
+++ incubator/mesos/trunk/src/Makefile.in Sun Jun  5 03:23:00 2011
@@ -92,7 +92,7 @@ NEXUS_LIBS = $(SCHED_LIB) $(EXEC_LIB) $(
 MASTER_OBJ = master.o allocator_factory.o simple_allocator.o
 SLAVE_OBJ = slave.o launcher.o isolation_module_factory.o \
 	    process_based_isolation_module.o
-COMMON_OBJ = fatal.o hash_pid.o messages.o getleader.o processurl.o
+COMMON_OBJ = fatal.o hash_pid.o messages.o lock.o leader_detector.o url_processor.o
 EXEC_LIB_OBJ = nexus_exec.o
 SCHED_LIB_OBJ = nexus_sched.o nexus_local.o params.o
 TEST_OBJ = tests/main.o tests/test_master.o tests/test_resources.o

Modified: incubator/mesos/trunk/src/slave.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/slave.cpp?rev=1131560&r1=1131559&r2=1131560&view=diff
==============================================================================
--- incubator/mesos/trunk/src/slave.cpp (original)
+++ incubator/mesos/trunk/src/slave.cpp Sun Jun  5 03:23:00 2011
@@ -5,7 +5,7 @@
 #include "slave.hpp"
 #include "slave_webui.hpp"
 #include "isolation_module_factory.hpp"
-#include "process_url.hpp"
+#include "url_processor.hpp"
 
 using std::list;
 using std::make_pair;