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
refactor: Make the async readiness gate awaitable end-to-end
AsyncDataSystem.data_availability and AsyncLDClient.is_initialized()
become coroutines; AsyncFeatureStore gains an abstract async
is_initialized() and the getattr duck-type is dropped; the warm-start
store error is caught inside data_availability and degrades to DEFAULTS;
the interim refresh_availability, cold-path gating, and start-time
refresh are removed. Extracted to PR #486. Sync unchanged.
log.warning("Feature Flag evaluation attempted before client has initialized - using last known values from feature store for feature key: "+key)
506
500
else:
507
501
log.warning("Feature Flag evaluation attempted before client has initialized! Feature store unavailable - returning default: "+str(default) +" for feature key: "+key)
0 commit comments