You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(web): skip Remote Config realtime stream on web
The CachedRemoteConfigService constructor subscribed to
FirebaseRemoteConfig.onConfigUpdated with no onError handler. On web that
realtime stream cannot connect and emits `remoteconfig/stream-error`
continuously, so the errors escaped to runZonedGuarded and spammed SEVERE every
few seconds.
Skip the realtime subscription on web (config values still come from init's
bounded fetch and the cache), and add an onError handler so a transient stream
error no longer escapes to the zone on native either.
0 commit comments