Skip to content

Commit

Permalink
send next window in 10ms
Browse files Browse the repository at this point in the history
  • Loading branch information
vjabrayilov committed Nov 15, 2023
1 parent 5c3f6ef commit e30fb32
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 @@ -303,7 +303,7 @@ void ClientLoop(void *channel_ctx, MachnetFlow *flow) {
int64_t rx_window_slot = ClientRecvOneBlocking(&thread_ctx);
if (rx_window_slot < 0) {
auto next =
std::chrono::steady_clock::now() + std::chrono::milliseconds(150);
std::chrono::steady_clock::now() + std::chrono::milliseconds(10);
while (true) {
rx_window_slot = ClientRecvOneBlocking(&thread_ctx);
if (rx_window_slot > 0) break;
Expand Down

0 comments on commit e30fb32

Please sign in to comment.