More warning fixes

This commit is contained in:
kdeng00
2025-06-29 17:25:23 -04:00
parent bd1929d5d2
commit c0af1c3310
3 changed files with 22 additions and 22 deletions
+4 -4
View File
@@ -107,7 +107,7 @@ pub mod metadata_queue {
.fetch_one(pool)
.await
.map_err(|e| {
eprintln!("Error inserting: {}", e);
eprintln!("Error inserting: {e}");
});
match result {
@@ -135,7 +135,7 @@ pub mod metadata_queue {
.fetch_one(pool)
.await
.map_err(|e| {
eprintln!("Error inserting: {}", e);
eprintln!("Error inserting: {e}");
});
match result {
@@ -174,7 +174,7 @@ pub mod metadata_queue {
.fetch_one(pool)
.await
.map_err(|e| {
eprintln!("Error inserting: {}", e);
eprintln!("Error inserting: {e}");
});
match result {
@@ -241,7 +241,7 @@ pub mod endpoint {
match params.id {
Some(id) => {
println!("Something works {:?}", id);
println!("Something works {id}");
match super::metadata_queue::get_with_id(&pool, &id).await {
Ok(item) => {