Skip to content

Commit 05faf2f

Browse files
authored
fix: resolve recent merge collisio (#33110)
1 parent 347c174 commit 05faf2f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

scripts/change_detector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def main(event_type: str, sha: str, repo: str) -> None:
140140
# trigger all checks. This is a workaround for the GitHub API limit of 100
141141
# files. Using >= 99 because off-by-one errors are not uncommon
142142
if changed or len(files) >= 99:
143-
print(f"{check}={str(changed).lower()}", file=f)
143+
print(f"{check}=true", file=f)
144144
print(f"Triggering group: {check}")
145145

146146

superset/dashboards/api.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,6 @@ def build_response(status_code: int) -> WerkzeugResponse:
11301130
dashboard_id=dashboard.id,
11311131
dashboard_url=dashboard_url,
11321132
thumb_size=thumb_size,
1133-
cache_key=cache_key,
11341133
window_size=window_size,
11351134
cache_key=cache_key,
11361135
force=force,

0 commit comments

Comments
 (0)