more corrections
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
2021-07-29 18:33:15 +02:00
parent 940d4965bc
commit d8acf94a02
2 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,10 @@ int main() {
std::cout << "eive-watchdog: Starting OBSW watchdog.." << std::endl;
try {
WatchdogTask watchdogTask;
watchdogTask.performOperation();
int result = watchdogTask.performOperation();
if(result != 0) {
return result;
}
}
catch(const std::runtime_error& e) {
std::cerr << "eive-watchdog: Run time exception " << e.what() << std::endl;