Skip to content

Commit 923e64e

Browse files
Generalize comment for realtime retry interval
1 parent 98d4815 commit 923e64e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

firebase-config/src/main/java/com/google/firebase/remoteconfig/internal/ConfigAutoFetch.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,10 @@ private void handleNotifications(InputStream inputStream) throws IOException {
210210
}
211211
}
212212

213-
// This field in the response indicates that the realtime request has exceeded the
214-
// project's quota. It will retry after the specified interval to establish a long-lived
215-
// connection. This interval extends the backoff duration without affecting the number of
216-
// retries, so it will not enter an exponential backoff state.
213+
// This field in the response indicates that the realtime request should retry after the
214+
// specified interval to establish a long-lived connection. This interval extends the
215+
// backoff duration without affecting the number of retries, so it will not enter an
216+
// exponential backoff state.
217217
if (jsonObject.has(REALTIME_RETRY_INTERVAL)) {
218218
int realtimeRetryInterval = jsonObject.getInt(REALTIME_RETRY_INTERVAL);
219219
updateBackoffMetadataWithRetryInterval(realtimeRetryInterval);

0 commit comments

Comments
 (0)