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

michaelsmolina pushed a commit to branch 5.0
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 65c76024f6e0b965deda326b02341db6030d8d05
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Sat Apr 12 16:33:00 2025 -0700

    fix: resolve recent merge collisio (#33110)
---
 scripts/change_detector.py | 2 +-
 superset/dashboards/api.py | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/scripts/change_detector.py b/scripts/change_detector.py
index 7efd0ede5e..7d897fb3cf 100755
--- a/scripts/change_detector.py
+++ b/scripts/change_detector.py
@@ -134,7 +134,7 @@ def main(event_type: str, sha: str, repo: str) -> None:
     with open(output_path, "a") as f:
         for check, changed in changes_detected.items():
             if changed:
-                print(f"{check}={str(changed).lower()}", file=f)
+                print(f"{check}=true", file=f)
                 print(f"Triggering group: {check}")
 
 
diff --git a/superset/dashboards/api.py b/superset/dashboards/api.py
index 5d5561d3c2..3d480c6c88 100644
--- a/superset/dashboards/api.py
+++ b/superset/dashboards/api.py
@@ -1126,7 +1126,6 @@ class DashboardRestApi(BaseSupersetModelRestApi):
                 dashboard_id=dashboard.id,
                 dashboard_url=dashboard_url,
                 thumb_size=thumb_size,
-                cache_key=cache_key,
                 window_size=window_size,
                 cache_key=cache_key,
                 force=force,

Reply via email to