Add work-around for old AZP jobs (#80339)

pull/80342/head
Matt Clay 1 year ago committed by GitHub
parent 9faf94468b
commit 2e413b74e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -48,6 +48,14 @@ def get_coverage_runs():
coverage_runs = []
for run_summary in runs["value"][0:1000]:
run_response = requests.get(run_summary['url'])
if run_response.status_code == 500 and 'Cannot serialize type Microsoft.Azure.Pipelines.WebApi.ContainerResource' in run_response.json()['message']:
# This run used a container resource, which AZP can no longer serialize for anonymous requests.
# Assume all older requests have this issue as well and stop further processing of runs.
# The issue was reported here: https://developercommunity.visualstudio.com/t/Pipelines-API-serialization-error-for-an/10294532
# A work-around for this issue was applied in: https://github.com/ansible/ansible/pull/80299
break
run_response.raise_for_status()
run = run_response.json()

Loading…
Cancel
Save