Skip to content

Commit

Permalink
fix: blindly following clippy error on pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
djavorek committed Nov 2, 2023
1 parent 791bb42 commit 1e146a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async fn init(config: &AppConfig) -> (SocketAddr, Router) {
info!("Successfully initialized logging");

info!("Establishing database connection...");
let conn = veryrezsi_core::database::init(&config).await;
let conn = veryrezsi_core::database::init(config).await;
info!("Successfully established database connection");

info!(
Expand Down

0 comments on commit 1e146a2

Please sign in to comment.