Skip to content

Commit

Permalink
style: remove trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgehermo9 committed Oct 27, 2024
1 parent a630c30 commit 08aaba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/server/src/tasks/cleanup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl CleanupTask {
pub async fn execute_cleanup(task: CleanupTask, db_connection: Data<PgPool>) -> Result<(), Error> {
match task.cleanup(db_connection).await {
Ok(rows_affected) => {
tracing::info!(deleted_shares = rows_affected, "Cleanup task completed",);
tracing::info!(deleted_shares = rows_affected, "Cleanup task completed");
Ok(())
}
Err(e) => {
Expand Down

0 comments on commit 08aaba8

Please sign in to comment.