From e863b952563d9ecaf8b830fd0a4ea9a800c04079 Mon Sep 17 00:00:00 2001 From: Adam Ruzicka Date: Mon, 1 Sep 2025 16:09:39 +0200 Subject: [PATCH] Drop optional field from Halt request variant It is not used anywhere. Previously we were leaving it unset, which was fine in single-process scenarios (such as tests and development environments), but failed in cases where the request took a round trip through the database. --- lib/dynflow/dispatcher.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dynflow/dispatcher.rb b/lib/dynflow/dispatcher.rb index 403f3662..92273575 100644 --- a/lib/dynflow/dispatcher.rb +++ b/lib/dynflow/dispatcher.rb @@ -30,7 +30,7 @@ module Dispatcher end Halt = type do - fields! execution_plan_id: String, optional: Algebrick::Types::Boolean + fields! execution_plan_id: String end variants Event, Execution, Ping, Status, Planning, Halt