Skip to content

Commit

Permalink
Fix build failures
Browse files Browse the repository at this point in the history
  • Loading branch information
kasundharmadasa committed Sep 10, 2023
1 parent 2142518 commit 8c89673
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/server/JasmineGraphInstanceService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2387,7 +2387,6 @@ void *instanceservicesession(void *dummyPt) {
}
instance_logger.log("Closing thread " + to_string(pthread_self()), "info");
pthread_exit(NULL);
instance_logger.log("Closed " + to_string(pthread_self()), "info");
close(connFd);
return NULL;
}
Expand Down
3 changes: 0 additions & 3 deletions src/server/JasmineGraphServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ void JasmineGraphServer::startRemoteWorkers(std::vector<int> workerPortsVector,
std::string nmonFileLocation = utils.getJasmineGraphProperty("org.jasminegraph.server.nmon.file.location");
std::string graphsagelocation = utils.getJasmineGraphProperty("org.jasminegraph.graphsage");
std::string federatedLearningLocation = utils.getJasmineGraphProperty("org.jasminegraph.fl.location");
std::string federatedLearningLocationLocal = utils.getJasmineGraphProperty("org.jasminegraph.fl.location.local");

std::string instanceFolder = utils.getJasmineGraphProperty("org.jasminegraph.server.instance");
std::string instanceFolderLocal = utils.getJasmineGraphProperty("org.jasminegraph.server.instance.local");
Expand Down Expand Up @@ -350,7 +349,6 @@ void JasmineGraphServer::startRemoteWorkers(std::vector<int> workerPortsVector,
" >/tmp/worker_logs/worker_" + to_string(i) + ".log 2>&1";
} else {
serverStartScript = "docker run -v " + instanceFolderLocal + ":" + instanceFolder +
" -v " + federatedLearningLocationLocal + ":" + federatedLearningLocation + //todo improve to support workers on different hosts
" -v " + aggregateDataFolder + ":" + aggregateDataFolder +
" -v " + nmonFileLocation + ":" + nmonFileLocation +
" -v " + graphsagelocation + ":" + graphsagelocation +
Expand Down Expand Up @@ -381,7 +379,6 @@ void JasmineGraphServer::startRemoteWorkers(std::vector<int> workerPortsVector,
" >/tmp/worker_logs/worker_" + to_string(i) + ".log 2>&1";
} else {
serverStartScript = "docker -H ssh://" + host + " run -v " + instanceFolderLocal + ":" + instanceFolder +
" -v " + federatedLearningLocationLocal + ":" + federatedLearningLocation + //todo improve to support workers on different hosts
" -v " + aggregateDataFolder + ":" + aggregateDataFolder +
" -v " + nmonFileLocation + ":" + nmonFileLocation +
" -v " + graphsagelocation + ":" + graphsagelocation +
Expand Down

0 comments on commit 8c89673

Please sign in to comment.