Skip to content

Commit 51c2bb5

Browse files
committed
Fix: Airflow tests
1 parent 202b73c commit 51c2bb5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sqlmesh/schedulers/airflow/state_sync.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,8 @@ def refresh_snapshot_intervals(self, snapshots: t.Collection[Snapshot]) -> t.Lis
236236
Returns:
237237
The updated snapshots.
238238
"""
239-
raise NotImplementedError(
240-
"Refreshing snapshot intervals is not supported by the Airflow state sync."
241-
)
239+
logger.warning("Refreshing snapshot intervals is not supported by the Airflow state sync")
240+
return list(snapshots)
242241

243242
def promote(
244243
self,

0 commit comments

Comments
 (0)