From 2680edff656b36d1316b6e3acaafa72610a08ede Mon Sep 17 00:00:00 2001 From: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> Date: Wed, 1 Oct 2025 09:40:07 +0100 Subject: [PATCH] fix failing CheckpointWithHumanInTheLoop sample (#1034) --- .../Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs index 2c3eb44747..b529d213ae 100644 --- a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs +++ b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs @@ -13,7 +13,7 @@ internal static class WorkflowHelper /// Get a workflow that plays a number guessing game with human-in-the-loop interaction. /// An input port allows the external world to provide inputs to the workflow upon requests. /// - internal static ValueTask> GetWorkflowAsync() + internal static ValueTask> GetWorkflowAsync() { // Create the executors InputPort numberInputPort = InputPort.Create("GuessNumber"); @@ -24,7 +24,7 @@ internal static class WorkflowHelper .AddEdge(numberInputPort, judgeExecutor) .AddEdge(judgeExecutor, numberInputPort) .WithOutputFrom(judgeExecutor) - .BuildAsync(); + .BuildAsync(); } }