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.
2 parents 6105412 + 61ba815 commit a98f140Copy full SHA for a98f140
packages/remote-config/src/client/realtime_handler.ts
@@ -81,7 +81,7 @@ export class RealtimeHandler {
81
const numFailedStreams =
82
((await this.storage.getRealtimeBackoffMetadata())?.numFailedStreams ||
83
0) + 1;
84
- const backoffMillis = calculateBackoffMillis(numFailedStreams);
+ const backoffMillis = calculateBackoffMillis(numFailedStreams) * 60;
85
await this.storage.setRealtimeBackoffMetadata({
86
backoffEndTimeMillis: new Date(
87
lastFailedStreamTime.getTime() + backoffMillis
0 commit comments