Skip to content

Commit bed00b6

Browse files
committed
remove redash_stmo skips
1 parent 355d9a4 commit bed00b6

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

redash/query_runner/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,8 +443,6 @@ def get_configuration_schema_for_query_runner_type(query_runner_type):
443443

444444
def import_query_runners(query_runner_imports):
445445
for runner_import in query_runner_imports:
446-
if "redash_stmo" in runner_import:
447-
continue
448446
__import__(runner_import)
449447

450448

redash/settings/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,6 @@ def email_server_is_configured():
347347
)
348348
additional_query_runners = array_from_string(os.environ.get("REDASH_ADDITIONAL_QUERY_RUNNERS", ""))
349349
disabled_query_runners = array_from_string(os.environ.get("REDASH_DISABLED_QUERY_RUNNERS", ""))
350-
disabled_query_runners.append("redash_stmo.query_runner.activedata") # for testing
351350

352351
QUERY_RUNNERS = remove(
353352
set(disabled_query_runners),

0 commit comments

Comments
 (0)