Skip to content

Commit 2048391

Browse files
committed
cleanup
1 parent f90822b commit 2048391

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

src/scheduler/MpiWorld.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ void MpiWorld::create(faabric::Message& call, int newId, int newSize)
201201
// Log chained functions to generate execution graphs
202202
if (thisRankMsg != nullptr && thisRankMsg->recordexecgraph()) {
203203
sch.logChainedFunction(call.id(), msg.id());
204+
msg.set_recordexecgraph(true);
204205
}
205206
}
206207

tests/test/scheduler/test_exec_graph.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ TEST_CASE_METHOD(MpiBaseTestFixture,
9898
messages.at(rank).set_mpiworldid(worldId);
9999
messages.at(rank).set_mpirank(rank);
100100
messages.at(rank).set_mpiworldsize(worldSize);
101+
messages.at(rank).set_recordexecgraph(true);
101102
}
102103

103104
world.create(msg, worldId, worldSize);

tests/test/util/test_json.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ TEST_CASE("Test message to JSON round trip", "[util]")
6161
REQUIRE(msg.timestamp() > 0);
6262

6363
std::string jsonString = faabric::util::messageToJson(msg);
64-
SPDLOG_INFO("{}", jsonString);
6564

6665
faabric::Message actual = faabric::util::jsonToMessage(jsonString);
6766

0 commit comments

Comments
 (0)