From b5e3049cc22ef2bc0e62756bf943fd250058a020 Mon Sep 17 00:00:00 2001 From: Chris Rericha Date: Thu, 16 Apr 2026 17:37:27 -0400 Subject: [PATCH] Fix: Do not modify updated_ts when unpausing all snapshots with target name Signed-off-by: Chris Rericha --- sqlmesh/core/state_sync/db/snapshot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlmesh/core/state_sync/db/snapshot.py b/sqlmesh/core/state_sync/db/snapshot.py index 8ca98f2d48..9b4337b504 100644 --- a/sqlmesh/core/state_sync/db/snapshot.py +++ b/sqlmesh/core/state_sync/db/snapshot.py @@ -138,7 +138,7 @@ def unpause_snapshots( ): self.engine_adapter.update_table( self.snapshots_table, - {"unpaused_ts": None, "updated_ts": updated_ts}, + {"unpaused_ts": None}, where=where, )