fix: State Updates are not published without CheckpointManager (#501)

This commit is contained in:
Jacob Alber
2025-08-26 17:41:48 +00:00
committed by GitHub
parent fa88641263
commit 8544cd9b03
4 changed files with 263 additions and 0 deletions
@@ -0,0 +1,11 @@
// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.Workflows.UnitTests;
internal sealed class ForwardMessageExecutor<TMessage> : Executor where TMessage : notnull
{
protected override RouteBuilder ConfigureRoutes(RouteBuilder routeBuilder)
{
return routeBuilder.AddHandler<TMessage>((message, ctx) => ctx.SendMessageAsync(message));
}
}