From 45573fc30ed9c4c7f6cf6a771adc08a56c5f7a24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miles=20St=C3=B6tzner?= Date: Tue, 3 Dec 2024 20:04:09 +0100 Subject: [PATCH] break retry loop --- src/controller/instances/deploy.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/controller/instances/deploy.ts b/src/controller/instances/deploy.ts index 19192660c7..9b5ee3e721 100644 --- a/src/controller/instances/deploy.ts +++ b/src/controller/instances/deploy.ts @@ -54,6 +54,7 @@ export default async function (options: InstancesDeployOptions) { } else { await orchestrator.continue(instance, {verbose: options.verbose}) } + break } catch (e) { // Throw in final run if (remaining === 1) throw e