Fix failure to write to keychain because of dropping a future

This commit is contained in:
Max Brunsfeld 2024-01-11 16:22:34 -08:00
parent 02029c945a
commit 08a4307d71
2 changed files with 3 additions and 5 deletions

View file

@ -244,6 +244,7 @@ where
}
}
#[must_use]
pub struct LogErrorFuture<F>(F, log::Level, core::panic::Location<'static>);
impl<F, T, E> Future for LogErrorFuture<F>