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 0ff4893 commit 61ba815Copy full SHA for 61ba815
packages/remote-config/src/client/realtime_handler.ts
@@ -74,7 +74,7 @@ export class RealtimeHandler {
74
const numFailedStreams =
75
((await this.storage.getRealtimeBackoffMetadata())?.numFailedStreams ||
76
0) + 1;
77
- const backoffMillis = calculateBackoffMillis(numFailedStreams);
+ const backoffMillis = calculateBackoffMillis(numFailedStreams) * 60;
78
await this.storage.setRealtimeBackoffMetadata({
79
backoffEndTimeMillis: new Date(
80
lastFailedStreamTime.getTime() + backoffMillis
0 commit comments