Skip to content

Commit

Permalink
Merge pull request #268 from gabriel-samfira/lower-log-level
Browse files Browse the repository at this point in the history
Lower the log level of ignored jobs
  • Loading branch information
gabriel-samfira committed Jun 20, 2024
2 parents 98b8a7f + 1dfa74e commit 38127af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/pool/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (r *basePoolManager) HandleWorkflowJob(job params.WorkflowJob) error {
// This job is new to us. Check if we have a pool that can handle it.
potentialPools, err := r.store.FindPoolsMatchingAllTags(r.ctx, r.entity.EntityType, r.entity.ID, jobParams.Labels)
if err != nil {
slog.With(slog.Any("error", err)).ErrorContext(
slog.With(slog.Any("error", err)).WarnContext(
r.ctx, "failed to find pools matching tags; not recording job",
"requested_tags", strings.Join(jobParams.Labels, ", "))
return
Expand Down

0 comments on commit 38127af

Please sign in to comment.