Skip to content

Commit

Permalink
fix: revert number of active UDP request to previous value
Browse files Browse the repository at this point in the history
It was pushed accidentally trying different configurations for
benchmarking.
  • Loading branch information
josecelano committed Mar 21, 2024
1 parent 294357b commit fbd0469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/servers/udp/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ impl Launcher {

#[derive(Default)]
struct ActiveRequests {
rb: StaticRb<AbortHandle, 1000>, // the number of requests we handle at the same time.
rb: StaticRb<AbortHandle, 50>, // the number of requests we handle at the same time.
}

impl std::fmt::Debug for ActiveRequests {
Expand Down

0 comments on commit fbd0469

Please sign in to comment.