Skip to content

Commit

Permalink
[TRIVIAL] Do not log on the found misbehaving solvers empty collection (
Browse files Browse the repository at this point in the history
#3304)

Currently, the log produces a lot of noise and should not be printed on
the empty collection.
  • Loading branch information
squadgazzz authored Mar 3, 2025
1 parent 96cc864 commit e6ac9d4
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,10 @@ impl SolverValidator {
})
.collect();

if non_settling_solver_names.is_empty() {
return;
}

let log_message = match ban_reason {
dto::notify::BanReason::UnsettledConsecutiveAuctions => "found non-settling solvers",
dto::notify::BanReason::HighSettleFailureRate => {
Expand Down

0 comments on commit e6ac9d4

Please sign in to comment.