mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 09:31:45 +00:00
Remove controller input for several tests
The affected tests have independent shutdown conditions that race with the controller inputs.
This commit is contained in:
committed by
Dennis Klein
parent
74881d27e3
commit
1a00f3edbd
@@ -38,12 +38,9 @@ class Receiver : public FairMQDevice
|
||||
auto Run() -> void override
|
||||
{
|
||||
auto msg = FairMQMessagePtr{NewMessage()};
|
||||
if (Receive(msg, fChannelName) >= 0)
|
||||
{
|
||||
if (Receive(msg, fChannelName) >= 0) {
|
||||
LOG(info) << "received empty message";
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
LOG(error) << "fair::mq::test::Receiver::Run(): Receive(msg, fChannelName) < 0";
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user