File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
libraries/azure-app-configuration-importer/src/internal/parsers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ class FeatureFlagConfigurationSettingsConverter implements ConfigurationSettings
205205 `Feature flag ${ featureFlag } contains invalid character,'%' and ':' are not allowed in feature name. Please provide valid feature id.`
206206 ) ;
207207 }
208- featureFlags . push ( this . getFeatureFlagFromMicrosoftFeatureFlagSchema ( featureFlag ) ) ;
208+ featureFlags . push ( this . getFeatureFlagDefinitionFromMsFmSchema ( featureFlag ) ) ;
209209 }
210210 }
211211 }
@@ -341,7 +341,7 @@ class FeatureFlagConfigurationSettingsConverter implements ConfigurationSettings
341341 return featureFlagValue ;
342342 }
343343
344- private getFeatureFlagFromMicrosoftFeatureFlagSchema ( featureFlag : any ) : FeatureFlagValue {
344+ private getFeatureFlagDefinitionFromMsFmSchema ( featureFlag : any ) : FeatureFlagValue {
345345 const validate = this . ajv . compile < FeatureFlagValue > ( featureFlagValueSchema ) ;
346346 const featureFlagCopy = JSON . parse ( JSON . stringify ( featureFlag ) ) ; //deep copy
347347
You can’t perform that action at this time.
0 commit comments