Skip to content

Commit 93553cb

Browse files
committed
Testing: Set bwos to default to see which tests fail in CI
1 parent 972fe93 commit 93553cb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tokio/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ keywords = ["io", "async", "non-blocking", "futures"]
2424
[features]
2525
# Include nothing by default
2626
default = []
27-
bwos = ["rt-multi-thread"]
27+
bwos = []
2828
# enable everything
2929
full = [
3030
"fs",
@@ -73,6 +73,7 @@ process = [
7373
# Includes basic task execution capabilities
7474
rt = []
7575
rt-multi-thread = [
76+
"bwos",
7677
"num_cpus",
7778
"rt",
7879
]

tokio/src/runtime/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ impl Builder {
233233
/// Configuration methods can be chained on the return value.
234234
pub fn new_multi_thread() -> Builder {
235235
// The number `61` is fairly arbitrary. I believe this value was copied from golang.
236-
Builder::new(Kind::MultiThread(MultiThreadFlavor::Default), 61, 61)
236+
Builder::new(Kind::MultiThread(MultiThreadFlavor::Bwos), 61, 61)
237237
}
238238
}
239239

0 commit comments

Comments
 (0)