Skip to content

Commit 7b9c6a7

Browse files
committed
Update dependencies to new releases
Signed-off-by: halspang <[email protected]>
1 parent eb3029f commit 7b9c6a7

File tree

4 files changed

+3
-31
lines changed

4 files changed

+3
-31
lines changed

src/WebJobs.Extensions.DurableTask/Grpc/orchestrator_service.proto

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -658,30 +658,6 @@ message AbandonEntityTaskResponse {
658658
// Empty.
659659
}
660660

661-
message AbandonActivityTaskRequest {
662-
string completionToken = 1;
663-
}
664-
665-
message AbandonActivityTaskResponse {
666-
// Empty.
667-
}
668-
669-
message AbandonOrchestrationTaskRequest {
670-
string completionToken = 1;
671-
}
672-
673-
message AbandonOrchestrationTaskResponse {
674-
// Empty.
675-
}
676-
677-
message AbandonEntityTaskRequest {
678-
string completionToken = 1;
679-
}
680-
681-
message AbandonEntityTaskResponse {
682-
// Empty.
683-
}
684-
685661
service TaskHubSidecarService {
686662
// Sends a hello request to the sidecar service.
687663
rpc Hello(google.protobuf.Empty) returns (google.protobuf.Empty);

src/WebJobs.Extensions.DurableTask/LocalGrpcListener.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ public override Task<Empty> Hello(Empty request, ServerCallContext context)
237237
// Create a new activity with the parent context
238238
ActivityContext.TryParse(traceParent, traceState, out ActivityContext parentActivityContext);
239239
using Activity? scheduleOrchestrationActivity = TraceHelper.StartActivityForNewOrchestration(executionStartedEvent, parentActivityContext, request.RequestTime?.ToDateTimeOffset());
240+
240241
// Schedule the orchestration
241242
await this.GetDurabilityProvider(context).CreateTaskOrchestrationAsync(
242243
new TaskMessage

src/WebJobs.Extensions.DurableTask/WebJobs.Extensions.DurableTask.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
<PackageReference Include="Azure.Identity" />
5858
<PackageReference Include="Microsoft.Azure.WebJobs" />
5959
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Rpc" />
60-
<!--<PackageReference Include="Microsoft.Azure.DurableTask.Core" />-->
61-
<!--<PackageReference Include="Microsoft.Azure.DurableTask.AzureStorage" />-->
60+
<PackageReference Include="Microsoft.Azure.DurableTask.Core" />
61+
<PackageReference Include="Microsoft.Azure.DurableTask.AzureStorage" />
6262
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask.Analyzers" />
6363
<PackageReference Include="Microsoft.Extensions.Azure" />
6464
<PackageReference Include="Microsoft.Extensions.Http" />
@@ -90,9 +90,5 @@
9090
<PackagePath>content/SBOM</PackagePath>
9191
</Content>
9292
</ItemGroup>
93-
<ItemGroup>
94-
<ProjectReference Include="..\..\..\durabletask\src\DurableTask.Core\DurableTask.Core.csproj" />
95-
<ProjectReference Include="..\..\..\durabletask\src\DurableTask.AzureStorage\DurableTask.AzureStorage.csproj" />
96-
</ItemGroup>
9793

9894
</Project>

test/e2e/Apps/BasicDotNetIsolated/VersionedOrchestration.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the MIT License. See License.txt in the project root for license information.
33

4-
using Microsoft.AspNetCore.Authentication;
54
using Microsoft.Azure.Functions.Worker;
65
using Microsoft.Azure.Functions.Worker.Http;
76
using Microsoft.DurableTask;

0 commit comments

Comments
 (0)