Skip to content

Commit

Permalink
update ALERT_REPORTS typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Lily Kuang committed Dec 1, 2020
1 parent fca0fb6 commit 009f0ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion superset/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def init_views(self) -> None:
appbuilder.add_api(DatasetRestApi)
appbuilder.add_api(QueryRestApi)
appbuilder.add_api(SavedQueryRestApi)
if feature_flag_manager.is_feature_enabled("ALERTS_REPORTS"):
if feature_flag_manager.is_feature_enabled("ALERT_REPORTS"):
appbuilder.add_api(ReportScheduleRestApi)
appbuilder.add_api(ReportExecutionLogRestApi)
#
Expand Down
2 changes: 1 addition & 1 deletion tests/superset_test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"ENABLE_TEMPLATE_PROCESSING": True,
"ENABLE_REACT_CRUD_VIEWS": os.environ.get("ENABLE_REACT_CRUD_VIEWS", False),
"ROW_LEVEL_SECURITY": True,
"ALERTS_REPORTS": True,
"ALERT_REPORTS": True,
}


Expand Down

0 comments on commit 009f0ea

Please sign in to comment.