Fix clippy issue
Check Details
Lints Details

This commit is contained in:
Paul van Tilburg 2023-03-21 12:10:52 +01:00
parent 58759d5309
commit b07bb73da4
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ pub fn setup() -> Rocket<Build> {
let service = services::get(config.service).expect("Invalid service"); let service = services::get(config.service).expect("Invalid service");
// We don't care about the join handle nor error results?t // We don't care about the join handle nor error results?t
let _ = rocket::tokio::spawn(update_loop(service)); let _service = rocket::tokio::spawn(update_loop(service));
}) })
})) }))
.attach(AdHoc::on_liftoff("Version", |_| { .attach(AdHoc::on_liftoff("Version", |_| {