Skip to content

Commit

Permalink
fix: Set max download retry to 500
Browse files Browse the repository at this point in the history
  • Loading branch information
NazmiAltun committed Feb 20, 2022
1 parent 5790098 commit 18e42da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/downloadTestResultArtifacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { create } from '@actions/artifact';
import delay from './utils/delay';
import { info } from '@actions/core';

const maxRetry = 200;
const maxRetry = 500;
const retryDurationInSecond = 3;
const artifactClient = create();

Expand Down

0 comments on commit 18e42da

Please sign in to comment.