Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion routing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ linkme = { workspace = true }
mio = { workspace = true, features = ["os-ext", "net"] }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["rt", "sync"] }
tokio = { workspace = true, features = ["fs", "io-util", "macros", "rt", "sync"] }
tracing = { workspace = true }

# arp resolver
Expand Down
4 changes: 2 additions & 2 deletions routing/src/fib/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ mod tests {
#[test]
fn test_concurrency_fibtable() {
// number of threads looking up fibtable
const NUM_WORKERS: u16 = 7;
const NUM_PACKETS: u64 = 1_000_000;
const NUM_WORKERS: u16 = 6;
const NUM_PACKETS: u64 = 100_000;
const TENTH: u64 = NUM_PACKETS / 10;

// create fibtable (empty, without any fib)
Expand Down
Loading