Skip to content

Commit

Permalink
increase sleep duration
Browse files Browse the repository at this point in the history
  • Loading branch information
vjabrayilov committed Nov 15, 2023
1 parent 27123da commit b173207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/msg_gen/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ void ClientLoop(void *channel_ctx, MachnetFlow *flow) {

int64_t rx_window_slot = ClientRecvOneBlocking(&thread_ctx);
if (rx_window_slot < 0) {
std::this_thread::sleep_for(std::chrono::microseconds(1));
std::this_thread::sleep_for(std::chrono::microseconds(100));
rx_window_slot = ++FLAGS_msg_window;
LOG(INFO) << "Server busy ... increasing window size to "
<< rx_window_slot;
Expand Down

0 comments on commit b173207

Please sign in to comment.