Merge pull request 'Bugfix PCDU Handler' (#235) from meier/pcduhandler-bugfix into develop
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

Reviewed-on: #235
This commit is contained in:
Robin Müller 2022-05-02 15:51:54 +02:00
commit 9dc382706a

View File

@ -100,14 +100,9 @@ void PCDUHandler::readCommandQueue() {
for (result = commandQueue->receiveMessage(&command); result == RETURN_OK;
result = commandQueue->receiveMessage(&command)) {
result = commandQueue->receiveMessage(&command);
if (result != RETURN_OK) {
return;
}
result = poolManager.handleHousekeepingMessage(&command);
if (result == RETURN_OK) {
return;
continue;
}
}
}