Skip to content

Commit b5e3049

Browse files
committed
Fix: Do not modify updated_ts when unpausing all snapshots with target name
Signed-off-by: Chris Rericha <chris@tobikodata.com>
1 parent 23b237c commit b5e3049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)