Skip to content

Commit

Permalink
udp load test: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
greatest-ape committed Feb 5, 2024
1 parent d8bdcfc commit 6eb3195
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/udp_load_test/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl Worker {
}

fn run_inner(&mut self) {
let connection_id = self.aquire_connection_id();
let connection_id = self.acquire_connection_id();

let mut requests_sent = 0usize;
let mut responses_received = 0usize;
Expand Down Expand Up @@ -125,7 +125,7 @@ impl Worker {
}
}

fn aquire_connection_id(&mut self) -> ConnectionId {
fn acquire_connection_id(&mut self) -> ConnectionId {
loop {
self.send_connect_request(0, u32::MAX);

Expand Down

0 comments on commit 6eb3195

Please sign in to comment.