Skip to content

Commit

Permalink
Change log level when group is not found (#590)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarmet authored Apr 25, 2024
1 parent 26fc925 commit 016216d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner_manager/jobs/workflow_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def queued(webhook: WorkflowJobQueued) -> str | None:
webhook.workflow_job.labels
)
if not runner_group:
log.warning(f"Runner group with labels {labels} not found")
log.info(f"Runner group with labels {labels} not found")
return None
github: GitHub = get_github()
log.info(f"Creating runner for {runner_group}")
Expand Down

0 comments on commit 016216d

Please sign in to comment.