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
After upgrading to 8.1.0 we realized that some of our FeatureFlags do not properly load anymore. Those AppConfiguration instances that do not work anymore all have a KeyFilter (other than KeyFilter.Any) defined. Those with no filter or KeyFilter.Any are fine. Workaround seems to be adding .appconfig.featureflag/* to the KeyFilters.
.UseFeatureFlags().Select("Prefix:*").Select(".appconfig.featureflag/*");// We need to add this line to load feature flags properly
These configs are purely Azure AppConfiguration related, no conflicting appconfig.json or other provider setting does exist. I validated by checking the behaviour of config.Providers[].Data.
The text was updated successfully, but these errors were encountered:
After upgrading to 8.1.0 we realized that some of our FeatureFlags do not properly load anymore. Those AppConfiguration instances that do not work anymore all have a KeyFilter (other than KeyFilter.Any) defined. Those with no filter or KeyFilter.Any are fine. Workaround seems to be adding
.appconfig.featureflag/*
to the KeyFilters.These configs are purely Azure AppConfiguration related, no conflicting appconfig.json or other provider setting does exist. I validated by checking the behaviour of config.Providers[].Data.
The text was updated successfully, but these errors were encountered: