Skip to content

Commit f67c753

Browse files
implement conversion to new protobuf-based entity-related orchestration history events, as used by DTS, and enable entities by default when using DTS backend.
1 parent e9b42f9 commit f67c753

File tree

8 files changed

+697
-16
lines changed

8 files changed

+697
-16
lines changed

src/Client/AzureManaged/DurableTaskSchedulerClientExtensions.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@ static void ConfigureSchedulerOptions(
8787

8888
builder.Services.TryAddEnumerable(
8989
ServiceDescriptor.Singleton<IConfigureOptions<GrpcDurableTaskClientOptions>, ConfigureGrpcChannel>());
90-
builder.UseGrpc(_ => { });
90+
builder.UseGrpc((GrpcDurableTaskClientOptions options) =>
91+
{
92+
options.EnableEntitySupport = true;
93+
});
9194
}
9295

9396
/// <summary>

0 commit comments

Comments
 (0)