Skip to content

Commit 21ae282

Browse files
committed
Fix: Do not modify updated_ts when unpausing all snapshots with target name
1 parent 23b237c commit 21ae282

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlmesh/core/state_sync/db/snapshot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def unpause_snapshots(
138138
):
139139
self.engine_adapter.update_table(
140140
self.snapshots_table,
141-
{"unpaused_ts": None, "updated_ts": updated_ts},
141+
{"unpaused_ts": None},
142142
where=where,
143143
)
144144

0 commit comments

Comments
 (0)