This is an automated email from the ASF dual-hosted git repository. beto pushed a commit to branch fix-gsheets-oauth2 in repository https://gitbox.apache.org/repos/asf/superset.git
commit baaa39400d67be6ac58ecf11ba249697f8a0d36c Author: Beto Dealmeida <[email protected]> AuthorDate: Thu Mar 13 16:14:58 2025 -0400 fix (gsheets): update params from encrypted extra --- superset/db_engine_specs/gsheets.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/superset/db_engine_specs/gsheets.py b/superset/db_engine_specs/gsheets.py index 647d0bc2fb..1798ea3046 100644 --- a/superset/db_engine_specs/gsheets.py +++ b/superset/db_engine_specs/gsheets.py @@ -191,6 +191,8 @@ class GSheetsEngineSpec(ShillelaghEngineSpec): if "oauth2_client_info" in params.get("encrypted_extra", {}): del params["encrypted_extra"]["oauth2_client_info"] + super().update_params_from_encrypted_extra(database, params) + @classmethod def get_parameters_from_uri( cls,
