Skip to content

Commit

Permalink
GH-592 Now that we limit how far ahead we sync, no need to pause duri…
Browse files Browse the repository at this point in the history
…ng snapshot. It naturally pauses.
  • Loading branch information
heifner committed Sep 12, 2024
1 parent 6b8d614 commit bbb7877
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions plugins/net_plugin/net_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -553,14 +553,6 @@ namespace eosio {
void start_expire_timer();
void start_monitors();

// we currently pause on snapshot generation
void wait_if_paused() const {
controller& cc = chain_plug->chain();
while (cc.is_writing_snapshot()) {
std::this_thread::sleep_for(std::chrono::milliseconds(10));
}
}

void expire();
/** \name Peer Timestamps
* Time message handling
Expand Down Expand Up @@ -2938,8 +2930,6 @@ namespace eosio {
return;
}

my_impl->wait_if_paused();

boost::asio::async_read( *socket,
pending_message_buffer.get_buffer_sequence_for_boost_async_read(), completion_handler,
boost::asio::bind_executor( strand,
Expand Down

0 comments on commit bbb7877

Please sign in to comment.