Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@ endif
all:
cd deps/logging/target/linux/x64/$(CONFIGURATION)/build;make install
cd deps/meshy/target/linux/x64/$(CONFIGURATION)/build;make install
cd target/linux/x64/$(HURRICANE_CONFIGURATION)/build;make install

#cd target/linux/x64/$(HURRICANE_CONFIGURATION)/build;make all; make install
cd src/sample/President;make all
cd src/sample/Manager;make all
clean:
cd target/linux/x64/$(HURRICANE_CONFIGURATION)/build;make clean
cd deps/meshy/target/linux/x64/$(CONFIGURATION)/build;make clean
cd deps/logging/target/linux/x64/$(CONFIGURATION)/build;make clean
cd src/sample/President;make all
cd src/sample/Manager;make all


148 changes: 0 additions & 148 deletions src/hurricane/bolt/JavaBolt.cpp

This file was deleted.

52 changes: 0 additions & 52 deletions src/hurricane/collector/JavaOutputCollector.cpp

This file was deleted.

97 changes: 0 additions & 97 deletions src/hurricane/collector/JavaOutputCollector.jni.cpp

This file was deleted.

2 changes: 1 addition & 1 deletion src/hurricane/service/Manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Manager::Manager(const hurricane::util::Configuration& configuration) :

void Manager::InitPresidentConnector()
{
hurricane::base::NetAddress presidentAddress(_managerConfiguration->GetProperty(CONF_KEY_PRESIDENT_PORT),
hurricane::base::NetAddress presidentAddress(_managerConfiguration->GetProperty(CONF_KEY_PRESIDENT_HOST),
_managerConfiguration->GetIntegerProperty(CONF_KEY_PRESIDENT_PORT));
_presidentConnector = new hurricane::util::NetConnector(presidentAddress);
_presidentClient = new hurricane::message::CommandClient(_presidentConnector);
Expand Down
Loading