Skip to content

Commit

Permalink
Increase delay transofrm
Browse files Browse the repository at this point in the history
  • Loading branch information
kdelemme committed Oct 11, 2024
1 parent 6b46330 commit fcd5a0a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function createTransformHelper(
.timeout(10000)
.expect(404);
},
{ retryCount: 5, retryDelay: 2000 }
{ retryCount: 10, retryDelay: 3000 }
);
},

Expand All @@ -50,7 +50,7 @@ export function createTransformHelper(
.expect(200);
return response.body;
},
{ retryCount: 5, retryDelay: 2000 }
{ retryCount: 10, retryDelay: 3000 }
);
},
};
Expand Down

0 comments on commit fcd5a0a

Please sign in to comment.