Skip to content

Commit fbd0469

Browse files
committed
fix: revert number of active UDP request to previous value
It was pushed accidentally trying different configurations for benchmarking.
1 parent 294357b commit fbd0469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/servers/udp/server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ impl Launcher {
203203

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

209209
impl std::fmt::Debug for ActiveRequests {

0 commit comments

Comments
 (0)