Skip to content

Commit

Permalink
Correct style checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashok12011234 committed Jan 19, 2024
1 parent 8a3dbe5 commit de192bf
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/server/JasmineGraphInstanceService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3363,8 +3363,9 @@ static void streaming_triangles_command(int connFd, int serverPort,
if (mode == "0") {
localCount = StreamingTriangles::countLocalStreamingTriangles(incrementalLocalStoreInstance);
} else {
localCount = StreamingTriangles::countDynamicLocalTriangles(incrementalLocalStoreInstance,
std::stol(oldLocalRelationCount), std::stol(oldCentralRelationCount));
localCount = StreamingTriangles::countDynamicLocalTriangles(
incrementalLocalStoreInstance, std::stol(oldLocalRelationCount),
std::stol(oldCentralRelationCount));
}

long newLocalRelationCount, newCentralRelationCount, result;
Expand Down Expand Up @@ -3693,8 +3694,8 @@ static void aggregate_centralstore_triangles_command(int connFd, bool *loop_exit
}
}

static void aggregate_streaming_centralstore_triangles_command(int connFd, std::map<std::string,
JasmineGraphIncrementalLocalStore *> &incrementalLocalStoreMap,
static void aggregate_streaming_centralstore_triangles_command(

Check warning on line 3697 in src/server/JasmineGraphInstanceService.cpp

View check run for this annotation

Codecov / codecov/patch

src/server/JasmineGraphInstanceService.cpp#L3697

Added line #L3697 was not covered by tests
int connFd, std::map<std::string, JasmineGraphIncrementalLocalStore *> &incrementalLocalStoreMap,
bool *loop_exit_p) {
if (!Utils::send_str_wrapper(connFd, JasmineGraphInstanceProtocol::OK)) {
*loop_exit_p = true;
Expand Down

0 comments on commit de192bf

Please sign in to comment.