Skip to content

Commit

Permalink
Fix the error message during InterceptorExecution
Browse files Browse the repository at this point in the history
Fix the resolve error message during the interceptor execution.
  • Loading branch information
khrm authored and tekton-robot committed Feb 14, 2023
1 parent 494882e commit 783877c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sink/sink.go
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ func (r Sink) ExecuteInterceptors(trInt []*triggersv1.TriggerInterceptor, in *ht
return nil, nil, nil, fmt.Errorf("url resolution failed for interceptor %s with: %w", i.GetName(), err)
}
if err != nil {
return nil, nil, nil, fmt.Errorf("could not resolve clusterinterceptor URL: %w", err)
return nil, nil, nil, fmt.Errorf("could not resolve nameSpacedinterceptor URL: %w", err)
}
}

Expand Down

0 comments on commit 783877c

Please # to comment.