Skip to content

Commit

Permalink
set sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
vjabrayilov committed Nov 15, 2023
1 parent 3aa3cbe commit d0c35e7
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(500));
std::this_thread::sleep_for(std::chrono::microseconds(50));
rx_window_slot = ++FLAGS_msg_window;
// LOG(INFO) << "Server busy ... increasing window size to "
// << rx_window_slot;
Expand Down

0 comments on commit d0c35e7

Please sign in to comment.