Skip to content

Commit 5ef7b20

Browse files
chore: unifiying feature flags env config
1 parent cf42edf commit 5ef7b20

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: tubular/scripts/frontend_utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def get_app_config(self):
6767
""" Combines the common and environment configs APP_CONFIG data """
6868
app_config = self.common_cfg.get('APP_CONFIG', {})
6969
app_config.update(self.env_cfg.get('APP_CONFIG', {}))
70+
app_config.update(self.env_cfg.get('FEATURE_FLAGS', {}))
7071
app_config['APP_VERSION'] = self.get_version_commit_sha()
7172
app_config['FEATURE_FLAGS'] = self.get_feature_flags()
7273
if not app_config:

0 commit comments

Comments
 (0)