Skip to content
Snippets Groups Projects
Commit 8e2601af authored by Eric Cano's avatar Eric Cano
Browse files

Fixed heart beat being the same length as the garbage collection timeout.

This bug was introduced earlier this year. It led to spurious garbage collections in stress tests.
parent 0d9df6cb
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ private:
std::promise<void> m_exit;
/// The heartbeat update rate.
std::chrono::seconds const m_heartRate = std::chrono::seconds(60);
std::chrono::seconds const m_heartRate = std::chrono::seconds(30);
/// The logging context
log::Logger & m_logger;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment