We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bdbc103 + aac791f commit d26ea63Copy full SHA for d26ea63
1 file changed
src/internal/backoff.ts
@@ -1,8 +1,8 @@
1
import { logDebug } from '../util/logger';
2
3
-export const DEFAULT_BACKOFF_INITIAL_DELAY_MS = 1000;
4
-export const DEFAULT_BACKOFF_MULTIPLIER = 1.5;
5
-export const DEFAULT_BACKOFF_MAX_DELAY_MS = 30 * 1000;
+export const DEFAULT_BACKOFF_INITIAL_DELAY_MS = 50;
+export const DEFAULT_BACKOFF_MULTIPLIER = 2;
+export const DEFAULT_BACKOFF_MAX_DELAY_MS = 5 * 1000;
6
export const DEFAULT_BACKOFF_MAX_ATTEMPTS = 5;
7
8
/**
0 commit comments