You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ly...@apache.org on 2022/10/04 21:25:01 UTC

[superset] branch lyndsi-fix-refetch-async-queries updated: Fix unintentional merge changes (missed one)

This is an automated email from the ASF dual-hosted git repository.

lyndsi pushed a commit to branch lyndsi-fix-refetch-async-queries
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/lyndsi-fix-refetch-async-queries by this push:
     new 22177da48e Fix unintentional merge changes (missed one)
22177da48e is described below

commit 22177da48eb92f3fe301b156bb172e7f5f7aa3e1
Author: lyndsiWilliams <kc...@gmail.com>
AuthorDate: Tue Oct 4 16:24:41 2022 -0500

    Fix unintentional merge changes (missed one)
---
 superset/databases/commands/validate.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset/databases/commands/validate.py b/superset/databases/commands/validate.py
index 3921a02ab4..a8956257fa 100644
--- a/superset/databases/commands/validate.py
+++ b/superset/databases/commands/validate.py
@@ -87,6 +87,7 @@ class ValidateDatabaseParametersCommand(BaseCommand):
 
         # try to connect
         sqlalchemy_uri = engine_spec.build_sqlalchemy_uri(  # type: ignore
+            self._properties.get("parameters"),
             encrypted_extra,
         )
         if self._model and sqlalchemy_uri == self._model.safe_sqlalchemy_uri():