Retry artifact uploads on HTTP 500 (#833)

* Retry on 500

* bump package version

* fix tests

* Remove spurious change

* fix another test

* Roll back package version
This commit is contained in:
Brian Cristante
2021-06-04 17:09:30 -04:00
committed by GitHub
parent bb2f39337d
commit db21627995
3 changed files with 9 additions and 8 deletions

View File

@@ -107,8 +107,8 @@ test('retry fails after exhausting retries', async () => {
})
test('retry fails after non-retryable status code', async () => {
await testRetry([500, 200], {
responseCode: 500,
errorMessage: 'test failed: Artifact service responded with 500'
await testRetry([400, 200], {
responseCode: 400,
errorMessage: 'test failed: Artifact service responded with 400'
})
})