From 93f2431ea8f7f58820d1dcac7c9f5f4ca5fcb900 Mon Sep 17 00:00:00 2001 From: Sushobhit Dua <38429226+sushobhit-lt@users.noreply.github.com> Date: Tue, 9 Sep 2025 13:39:41 +0530 Subject: [PATCH] fix isStartExec --- src/lib/snapshotQueue.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/snapshotQueue.ts b/src/lib/snapshotQueue.ts index 7cc9bcb..0ca45a7 100644 --- a/src/lib/snapshotQueue.ts +++ b/src/lib/snapshotQueue.ts @@ -286,7 +286,7 @@ export default class Queue { let drop = false; - if (this.ctx.isStartExec && !this.ctx.config.tunnel) { + if (this.ctx.isStartExec) { this.ctx.log.info(`Processing Snapshot: ${snapshot?.name}`); }