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.
1 parent 3053389 commit 53c3578Copy full SHA for 53c3578
packages/service-utils/src/core/api.ts
@@ -210,8 +210,8 @@ export async function fetchTeamAndProject(
210
} catch (err: unknown) {
211
error = err;
212
if (i < retryCount - 1) {
213
- // Add a single retry with a delay between 50ms and 250ms.
214
- await sleepRandomMs(50, 250);
+ // Add a single retry with a delay between 20ms and 400ms.
+ await sleepRandomMs(20, 400);
215
}
216
217
0 commit comments