From dbc9f5f0952c6c20cbe0c088c328b8f8b25de5f7 Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Mon, 7 Oct 2024 13:08:24 -0500 Subject: [PATCH] GH-882 release branch not updated to use use new strand, use bind_executor instead --- plugins/net_plugin/net_plugin.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/net_plugin/net_plugin.cpp b/plugins/net_plugin/net_plugin.cpp index 798d7bb543..5cefd0022d 100644 --- a/plugins/net_plugin/net_plugin.cpp +++ b/plugins/net_plugin/net_plugin.cpp @@ -1766,12 +1766,12 @@ namespace eosio { if( current_rate_sec >= block_sync_rate_limit ) { block_sync_throttling = true; peer_dlog( this, "throttling block sync to peer ${host}:${port}", ("host", log_remote_endpoint_ip)("port", log_remote_endpoint_port)); - std::shared_ptr throttle_timer = std::make_shared(strand); + std::shared_ptr throttle_timer = std::make_shared(my_impl->thread_pool.get_executor()); throttle_timer->expires_from_now(std::chrono::milliseconds(100)); - throttle_timer->async_wait([this, throttle_timer](const boost::system::error_code& ec) { + throttle_timer->async_wait(boost::asio::bind_executor(strand, [this, throttle_timer](const boost::system::error_code& ec) { if (!ec) enqueue_sync_block(); - }); + })); return false; } }