From e9b5fd384663c83772292350411f0fcea947aea5 Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Mon, 2 Mar 2026 19:35:15 +0000 Subject: [PATCH] fix(supervisor): don't destroy compute instance after snapshot --- apps/supervisor/src/workloadServer/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/supervisor/src/workloadServer/index.ts b/apps/supervisor/src/workloadServer/index.ts index 07801682b..d857b0da6 100644 --- a/apps/supervisor/src/workloadServer/index.ts +++ b/apps/supervisor/src/workloadServer/index.ts @@ -471,11 +471,11 @@ export class WorkloadServer extends EventEmitter { }); if (result.success) { - this.logger.info("Suspend completion submitted, deleting instance", { + this.logger.info("Suspend completion submitted", { runId, instanceId: body.instance_id, + snapshotId: body.snapshot_id, }); - await this.computeManager?.deleteInstance(body.instance_id); } else { this.logger.error("Failed to submit suspend completion", { runId,