Skip to content

Commit 705ac85

Browse files
author
cwanjau
committed
renamed function
1 parent f86574b commit 705ac85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/azure-app-configuration-importer/src/internal/parsers/defaultConfigurationSettingsConverter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)