Skip to content
Snippets Groups Projects
Commit 076b062e authored by Jorge Camarero Vera's avatar Jorge Camarero Vera
Browse files

Resolve "Remove critical constrain after update heartbeat"

parent 92a6f48d
Branches
Tags
No related merge requests found
Pipeline #80638 failed
......@@ -12,6 +12,7 @@
- cta/CTA#494 - Workaround for scheduler crashing
- cta/CTA#500 - Safely handle empty shards in object store
- cta/CTA#509 - Avoid looping in cleaning up state
- cta/CTA#510 - Remove critical constrain after update heartbeat
### Features
- cta/CTA#490 - Improve code quality in the Physical Library catalogue code
......
......@@ -49,9 +49,7 @@ void AgentHeartbeatThread::run() {
log::ScopedParamContainer params(lc);
params.add("HeartbeatDeadline", std::chrono::duration_cast<std::chrono::seconds>(m_heartbeatDeadline).count())
.add("HeartbeatUpdateTime", updateTime);
lc.log(log::CRIT, "In AgentHeartbeatThread::run(): Could not update heartbeat in time. Exiting (segfault).");
cta::utils::segfault();
::exit(EXIT_FAILURE);
lc.log(log::WARNING, "In AgentHeartbeatThread::run(): Could not update heartbeat in time.");
}
}
} catch (cta::exception::Exception & ex) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment