Fix clippy issue

This commit is contained in:
Paul van Tilburg 2023-03-21 11:05:03 +01:00
parent 32ec6b516c
commit c8b951ab7e
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ fn rocket(maps_handle: MapsHandle) -> Rocket<Build> {
.attach(AdHoc::on_liftoff("Maps refresher", |_| {
Box::pin(async move {
// We don't care about the join handle nor error results?
let _ = rocket::tokio::spawn(maps_refresher);
let _refresher = rocket::tokio::spawn(maps_refresher);
})
}))
}