mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 17:41:45 +00:00
SDK: Do not always stop the session on destruction
This commit is contained in:
committed by
Dennis Klein
parent
7aa95fcd93
commit
5a7bf68c8c
@@ -61,11 +61,13 @@ struct TopologyFixture : ::testing::Test
|
||||
LOG(info) << mDDSEnv;
|
||||
LOG(info) << mDDSSession;
|
||||
mDDSSession.SubmitAgents(2);
|
||||
std::this_thread::sleep_for(std::chrono::seconds(1));
|
||||
std::this_thread::sleep_for(std::chrono::seconds(1)); // TODO implement WaitForIdleAgents
|
||||
mDDSSession.ActivateTopology(mDDSTopologyFile);
|
||||
}
|
||||
|
||||
auto TearDown() -> void override {}
|
||||
auto TearDown() -> void override {
|
||||
mDDSSession.Stop();
|
||||
}
|
||||
|
||||
LoggerConfig mLoggerConfig;
|
||||
std::string mDDSTopologyFile;
|
||||
|
Reference in New Issue
Block a user