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
If I set initial_build_id to 100, but the earliest global build number visible for a team/pipeline/job combination is 101, the resource will "hang" after fetching version 100. This is because I use since as my search parameter, which returns an empty array for build IDs that are below its range.
Solution
Use limit=1 and until=1 to find the earliest version visible for a given team/pipeline/job. If it is above initial_build_id, use that number instead.
The text was updated successfully, but these errors were encountered:
Problem
If I set
initial_build_id
to 100, but the earliest global build number visible for a team/pipeline/job combination is 101, the resource will "hang" after fetching version 100. This is because I usesince
as my search parameter, which returns an empty array for build IDs that are below its range.Solution
Use
limit=1
anduntil=1
to find the earliest version visible for a given team/pipeline/job. If it is aboveinitial_build_id
, use that number instead.The text was updated successfully, but these errors were encountered: