Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test foo #1443

Closed
wants to merge 16 commits into from
Prev Previous commit
Next Next commit
Revert "are you happy now Rust???"
This reverts commit 2893da0.
  • Loading branch information
ibc committed Aug 12, 2024
commit 186abe096686c90b90a1428e164dc095bb8d4a2d
8 changes: 5 additions & 3 deletions rust/src/router/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ async fn init() -> Worker {
let worker_manager = WorkerManager::new();

worker_manager
.create_worker(WorkerSettings {
enable_liburing: false,
..WorkerSettings::default()
.create_worker({
let mut settings = WorkerSettings::default();
settings.enable_liburing = false;

settings
})
.await
.expect("Failed to create worker")
Expand Down