Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions changelog/68688.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix an issue with too many warnings about the maximum number of processes
reached. Moved to debug.
2 changes: 1 addition & 1 deletion salt/metaproxy/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ def handle_decoded_payload(self, data):
if process_count_max > 0:
process_count = len(salt.utils.minion.running(self.opts))
while process_count >= process_count_max:
log.warning(
log.debug(
"Maximum number of processes reached while executing jid %s, waiting...",
data["jid"],
)
Expand Down
2 changes: 1 addition & 1 deletion salt/minion.py
Original file line number Diff line number Diff line change
Expand Up @@ -1865,7 +1865,7 @@ def _handle_decoded_payload(self, data):
if process_count_max > 0:
process_count = len(salt.utils.minion.running(self.opts))
while process_count >= process_count_max:
log.warning(
log.debug(
"Maximum number of processes reached while executing jid %s,"
" waiting...",
data["jid"],
Expand Down