Skip to content

Commit

Permalink
Changes aggressive polling to false for the kernel_poll_only io_uring…
Browse files Browse the repository at this point in the history
… configuration option. (#41)

* Set aggresive_poll from true to false for kernel_poll_only configuration. Fixes #40
  • Loading branch information
LtdJorge authored Feb 18, 2024
1 parent 323b1d0 commit 8fffab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ impl IoUringConfiguration {
Self {
queue_len,
sqpoll_wake_interval: Some(2),
aggressive_poll: true,
aggressive_poll: false,
..Self::default()
}
}
Expand Down

0 comments on commit 8fffab8

Please sign in to comment.