diff --git a/scripts/change_detector.py b/scripts/change_detector.py index 06ed4647135..9c197b591f7 100755 --- a/scripts/change_detector.py +++ b/scripts/change_detector.py @@ -140,7 +140,7 @@ def main(event_type: str, sha: str, repo: str) -> None: # trigger all checks. This is a workaround for the GitHub API limit of 100 # files. Using >= 99 because off-by-one errors are not uncommon if changed or len(files) >= 99: - 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 cd17cda16b5..65d8fbd662a 100644 --- a/superset/dashboards/api.py +++ b/superset/dashboards/api.py @@ -1130,7 +1130,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,