Skip to content

Commit

Permalink
Merge pull request #53 from etherspot/PRO-2349
Browse files Browse the repository at this point in the history
Updated timer of the retry function
  • Loading branch information
Jineshdarjee authored May 16, 2024
2 parents 4ba6728 + c9c3144 commit 16fd319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils/baseTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import helper from "./helper.js";
function customRetryAsync(fn, maxRetries) {
return new Promise((resolve, reject) => {
let retries = 0;
const retryDelay = 10000; // You can adjust the delay as needed
const retryDelay = 60000; // You can adjust the delay as needed

async function run() {
try {
Expand Down

0 comments on commit 16fd319

Please sign in to comment.