File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -443,6 +443,8 @@ def get_configuration_schema_for_query_runner_type(query_runner_type):
443443
444444def import_query_runners (query_runner_imports ):
445445 for runner_import in query_runner_imports :
446+ if "redash_stmo" in runner_import :
447+ continue
446448 __import__ (runner_import )
447449
448450
Original file line number Diff line number Diff line change @@ -347,6 +347,7 @@ def email_server_is_configured():
347347)
348348additional_query_runners = array_from_string (os .environ .get ("REDASH_ADDITIONAL_QUERY_RUNNERS" , "" ))
349349disabled_query_runners = array_from_string (os .environ .get ("REDASH_DISABLED_QUERY_RUNNERS" , "" ))
350+ disabled_query_runners .append ("redash_stmo.query_runner.activedata" ) # for testing
350351
351352QUERY_RUNNERS = remove (
352353 set (disabled_query_runners ),
You can’t perform that action at this time.
0 commit comments