Skip to content

Commit

Permalink
STORM-3986 - Get rid of BlacklistScheduler timer [INFO] logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rzo1 committed Nov 9, 2023
1 parent fd88376 commit 81ac43b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,11 @@ private Set<String> refreshBlacklistedSupervisorIds(Cluster cluster, Topologies
new ArrayList<>(badSupervisorsToleranceSlidingWindow),
new ArrayList<>(sendAssignmentFailureCount),
cluster, topologies);
LOG.info("Supervisors {} are blacklisted.", blacklistedSupervisors);
if (blacklistedSupervisors.isEmpty()) {
LOG.debug("No Supervisors are blacklisted.");
} else {
LOG.info("Supervisors {} are blacklisted.", blacklistedSupervisors);
}
return blacklistedSupervisors;
}

Expand Down

0 comments on commit 81ac43b

Please sign in to comment.