Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,3 @@ template: |
## This release was made possible by the following contributors:

$CONTRIBUTORS

autolabeler:
- label: 'documentation'
title:
- '/docs.+/i'
- label: 'bug'
title:
- '/fix/i'
- label: 'feature'
title:
- '/feat.+/i'
- '/refactor.+/i'
- label: 'internal'
title:
- '/chore.+/i'
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ def get_enabled_features(self, *, context: Optional[Dict[str, Any]] = None) -> L
logger.debug(f"Failed to fetch feature flags from store, returning empty list, reason={err}")
return features_enabled

logger.debug("Evaluating all features")
for name, feature in features.items():
rules = feature.get(schema.RULES_KEY, {})
feature_default_value = feature.get(schema.FEATURE_DEFAULT_VAL_KEY)
Expand Down