You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: prevent inconsistencies when assembling base taskURLs
The base URL for relative tasks was determined by
iterating over the fetchedResourcesForEvent map,
which stores pipeline URLs as keys.
However, since maps are unordered in Go, this can
result in inconsistent behavior when multiple remote
pipelines exist for the same Event (i.e., when >2
PipelineRuns are triggered). This change ensures that
the base URL is consistent per PipelineRun.
0 commit comments