1
0
Fork 0

Maybe it compiles now in oskar?

This commit is contained in:
lamai93 2019-11-13 15:27:46 +01:00
parent 6f64711db1
commit c2324cbf47
1 changed files with 3 additions and 3 deletions

View File

@ -1343,15 +1343,15 @@ void HeartbeatThread::updateAgentPool(VPackSlice const& agentPool) {
}
AgencyCommManager::MANAGER->updateEndpoints(values);
} catch (basics::Exception const& e) {
LOG_TOPIC("1cec6", WARN, Logger::HEARTBEAT)
LOG_TOPIC(WARN, Logger::HEARTBEAT)
<< "Error updating agency pool: " << e.message();
} catch (std::exception const& e) {
LOG_TOPIC("889d4", WARN, Logger::HEARTBEAT)
LOG_TOPIC(WARN, Logger::HEARTBEAT)
<< "Error updating agency pool: " << e.what();
} catch (...) {
}
} else {
LOG_TOPIC("92522", ERR, Logger::AGENCYCOMM)
LOG_TOPIC(ERR, Logger::AGENCYCOMM)
<< "Cannot find an agency persisted in RAFT 8|";
}
}