We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 522d4b0 commit d289c10Copy full SHA for d289c10
src/Extensions/Azure/DurableTaskSchedulerExtensions.cs
@@ -122,6 +122,12 @@ public static void UseDurableTaskScheduler(
122
var connectionOptions = DurableTaskSchedulerOptions.FromConnectionString(connectionString);
123
124
builder.Services.AddOptions<DurableTaskSchedulerOptions>(builder.Name)
125
+ .Configure(options =>
126
+ {
127
+ options.EndpointAddress = connectionOptions.EndpointAddress;
128
+ options.TaskHubName = connectionOptions.TaskHubName;
129
+ options.Credential = connectionOptions.Credential;
130
+ })
131
.Configure(configure ?? (_ => { }))
132
.ValidateDataAnnotations()
133
.ValidateOnStart();
0 commit comments