Skip to content

Commit

Permalink
fix: Remove vendored boost file to compile with boost 1.87.
Browse files Browse the repository at this point in the history
fix: Replace expires_from_now with expires_after.
  • Loading branch information
kinyoklion committed Dec 19, 2024
1 parent 3772096 commit 63a5c92
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 491 deletions.
2 changes: 1 addition & 1 deletion libs/internal/src/events/asio_event_processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ void AsioEventProcessor<SDK>::ScheduleFlush() {
LD_LOG(logger_, LogLevel::kDebug) << "event-processor: scheduling flush in "
<< flush_interval_.count() << "ms";

timer_.expires_from_now(flush_interval_);
timer_.expires_after(flush_interval_);
timer_.async_wait([this](boost::system::error_code ec) {
if (ec) {
LD_LOG(logger_, LogLevel::kDebug)
Expand Down
Loading

0 comments on commit 63a5c92

Please sign in to comment.