Skip to content

Commit

Permalink
fix(opts): convert adminq poll period to us
Browse files Browse the repository at this point in the history
This seems to have been mistakenly added as ms.
In practice this would have caused no harm as this value is not
currently being overrided by the helm chart.

Signed-off-by: Tiago Castro <[email protected]>
  • Loading branch information
tiagolobocastro committed Aug 16, 2024
1 parent 7b8b2e0 commit 3e09a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io-engine/src/subsys/config/opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ impl Default for NvmeBdevOpts {
nvme_adminq_poll_period_us: time_try_from_env(
"NVME_ADMINQ_POLL_PERIOD",
1_000,
TimeUnit::MilliSeconds,
TimeUnit::MicroSeconds,
),
nvme_ioq_poll_period_us: time_try_from_env(
"NVME_IOQ_POLL_PERIOD",
Expand Down

0 comments on commit 3e09a22

Please sign in to comment.