Skip to content

Commit

Permalink
version 6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
scale-tone committed Feb 6, 2023
1 parent f9e8027 commit 98aaeb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom-backends/mssql/Dfm.MsSql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.1.3" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.9.0" />
<PackageReference Include="Microsoft.DurableTask.SqlServer.AzureFunctions" Version="1.1.0" />
<PackageReference Include="durablefunctionsmonitor.dotnetbackend" Version="6.0.0" />
<PackageReference Include="durablefunctionsmonitor.dotnetbackend" Version="6.1.0" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
Expand Down
3 changes: 2 additions & 1 deletion custom-backends/mssql/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public void Configure(IWebJobsBuilder builder)
DfmEndpoint.Setup(null, new DfmExtensionPoints
{
GetInstanceHistoryRoutine = (client, connName, hubName, instanceId) => Task.FromResult(GetInstanceHistory(client, connName, hubName, instanceId)),
GetParentInstanceIdRoutine = GetParentInstanceId
GetParentInstanceIdRoutine = GetParentInstanceId,
GetTaskHubNamesRoutine = GetTaskHubNames
});
}

Expand Down

0 comments on commit 98aaeb6

Please sign in to comment.