We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa28cb5 commit f1cdc0eCopy full SHA for f1cdc0e
unleash-client-python/FeatureToggle/__init__.py
@@ -333,8 +333,7 @@ def fetch_feature_toggles():
333
334
if cas_name == FeatureToggles.__cas_name and environment == FeatureToggles.__environment:
335
# Strip CAS and ENV name from feature name
336
- active_cas_env_name = f'{FeatureToggles.__cas_name}.'
337
- f'{FeatureToggles.__environment}.'
+ active_cas_env_name = f'{cas_name}.{environment}.'
338
full_feature_name = full_feature_name.replace(active_cas_env_name, '')
339
if full_feature_name not in response:
340
response[full_feature_name] = {}
0 commit comments