diff --git a/src/config.rs b/src/config.rs index e6e3f5b01..d24d5bfcd 100644 --- a/src/config.rs +++ b/src/config.rs @@ -475,7 +475,10 @@ impl Config { /// Whether the config option needs an IO scheduler restart to take effect. pub(crate) fn needs_io_restart(&self) -> bool { - matches!(self, Config::OnlyFetchMvbox | Config::SentboxWatch) + matches!( + self, + Config::MvboxMove | Config::OnlyFetchMvbox | Config::SentboxWatch + ) } }