Skip to content
Merged
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
5 changes: 5 additions & 0 deletions airflow-core/src/airflow/models/trigger.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,11 @@ def assign_unassigned(
capacity -= count

if capacity <= 0:
log.info(
"Triggerer %s has reached the maximum capacity triggers assigned (%d). Not assigning any more triggers",
triggerer_id,
count,
)
return

alive_triggerer_ids = select(Job.id).where(
Expand Down
Loading