Skip to content

Commit 63a5c92

Browse files
committed
fix: Remove vendored boost file to compile with boost 1.87.
fix: Replace expires_from_now with expires_after.
1 parent 3772096 commit 63a5c92

File tree

2 files changed

+1
-491
lines changed

2 files changed

+1
-491
lines changed

libs/internal/src/events/asio_event_processor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ void AsioEventProcessor<SDK>::ScheduleFlush() {
168168
LD_LOG(logger_, LogLevel::kDebug) << "event-processor: scheduling flush in "
169169
<< flush_interval_.count() << "ms";
170170

171-
timer_.expires_from_now(flush_interval_);
171+
timer_.expires_after(flush_interval_);
172172
timer_.async_wait([this](boost::system::error_code ec) {
173173
if (ec) {
174174
LD_LOG(logger_, LogLevel::kDebug)

0 commit comments

Comments
 (0)