We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20a7e72 + 66cbc08 commit 29a3823Copy full SHA for 29a3823
src/commands/submit.ts
@@ -62,7 +62,10 @@ async function tryMultiStepUploadOrFallbackToSingle(
62
} catch (err) {
63
if (axios.isAxiosError(err)) {
64
// CI doesn't like safe-access here.
65
- if (err.response && err.response.status === 404) {
+ if (
66
+ (err.response && err.response.status === 404) ||
67
+ err.code === 'ECONNABORTED'
68
+ ) {
69
context.logger.info(
70
'Received 404 trying to get signed URLs. Assuming feature is notn released yet and falling back to single step upload',
71
{err}
0 commit comments