Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
bragov4ik committed Jan 20, 2025
1 parent 9cfb06d commit fbb5aa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stats/stats-server/src/update_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl UpdateService {

// These futures should never complete because they run in infinite loop.
// If any completes, it means something went terribly wrong.
while let Some(()) = group_update_jobs.next().await {
if let Some(()) = group_update_jobs.next().await {
tracing::error!("update job stopped unexpectedly");
panic!("update job stopped unexpectedly");
}
Expand Down

0 comments on commit fbb5aa9

Please sign in to comment.