From 23db9cfd84ef7ca12c7607cd25d1320f9567183f Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Wed, 31 Jan 2024 08:47:52 +0100 Subject: [PATCH] fix(cli): add support for restart_unless_cancelled in sync --- cli/script.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/script.ts b/cli/script.ts index fc8a851f1a..6a6f9d0fe6 100644 --- a/cli/script.ts +++ b/cli/script.ts @@ -196,6 +196,7 @@ export async function handleFile( concurrency_time_window_s: typed?.concurrency_time_window_s, concurrent_limit: typed?.concurrent_limit, deployment_message: message, + restart_unless_cancelled: typed?.restart_unless_cancelled, }, }); } else { @@ -223,6 +224,7 @@ export async function handleFile( concurrency_time_window_s: typed?.concurrency_time_window_s, concurrent_limit: typed?.concurrent_limit, deployment_message: message, + restart_unless_cancelled: typed?.restart_unless_cancelled, }, }); }