diff options
author | Shauren <shauren.trinity@gmail.com> | 2024-12-09 21:13:18 +0100 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2024-12-12 19:58:52 +0100 |
commit | 59c46f8a66c6edac5e7864fdb4bffccf0216ec13 (patch) | |
tree | 9fcc9ca52a6b0a8d86d6d3c51572f88e30ca6e93 /src/common/Metric/Metric.cpp | |
parent | a0bdf2da3b4c56f977dbb6772097e0254685ccbe (diff) |
Dep: Replace basic_deadline_timer with std::chrono based basic_waitable_timer
(cherry picked from commit c81183a6600722f3a9bb4996c0849b530fbdd1b0)
Diffstat (limited to 'src/common/Metric/Metric.cpp')
-rw-r--r-- | src/common/Metric/Metric.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/Metric/Metric.cpp b/src/common/Metric/Metric.cpp index e4bc948a8fa..a3956209b08 100644 --- a/src/common/Metric/Metric.cpp +++ b/src/common/Metric/Metric.cpp @@ -225,7 +225,7 @@ void Metric::ScheduleSend() { if (_enabled) { - _batchTimer->expires_from_now(boost::posix_time::seconds(_updateInterval)); + _batchTimer->expires_after(std::chrono::seconds(_updateInterval)); _batchTimer->async_wait([this](boost::system::error_code const&){ SendBatch(); }); } else @@ -255,7 +255,7 @@ void Metric::ScheduleOverallStatusLog() { if (_enabled) { - _overallStatusTimer->expires_from_now(boost::posix_time::seconds(_overallStatusTimerInterval)); + _overallStatusTimer->expires_after(std::chrono::seconds(_overallStatusTimerInterval)); _overallStatusTimer->async_wait([this](const boost::system::error_code&) { _overallStatusTimerTriggered = true; |