Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Grpc/orchestrator_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ message CompleteOrchestrationAction {
google.protobuf.StringValue newVersion = 4;
repeated HistoryEvent carryoverEvents = 5;
TaskFailureDetails failureDetails = 6;
map<string, string> tags = 7;
}

message TerminateOrchestrationAction {
Expand Down
4 changes: 2 additions & 2 deletions src/Grpc/versions.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# The following files were downloaded from branch main at 2025-11-04 03:02:50 UTC
https://raw.githubusercontent.com/microsoft/durabletask-protobuf/73592a81dac1b5dd8653bb5ed1099aee2c89e3a2/protos/orchestrator_service.proto
# The following files were downloaded from branch main at 2025-11-04 23:19:51 UTC
https://raw.githubusercontent.com/microsoft/durabletask-protobuf/8c0d166673593700cfa9d0b123cd55e025b2846e/protos/orchestrator_service.proto
7 changes: 6 additions & 1 deletion src/Shared/Grpc/ProtoUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,12 @@ internal static P.OrchestratorResponse ConstructOrchestratorResponse(
NewVersion = completeAction.NewVersion,
OrchestrationStatus = completeAction.OrchestrationStatus.ToProtobuf(),
Result = completeAction.Result,
};
};

foreach (KeyValuePair<string, string> tag in completeAction.Tags)
{
protoAction.CompleteOrchestration.Tags[tag.Key] = tag.Value;
}

if (completeAction.OrchestrationStatus == OrchestrationStatus.Failed)
{
Expand Down
Loading