Skip to content

Commit 20baafb

Browse files
Copilotbachuv
andauthored
Initial plan for wrapping gRPC StatusRuntimeException
Agent-Logs-Url: https://github.com/microsoft/durabletask-java/sessions/6c71e4a3-6ba6-4f7c-b5fb-038b059128d0 Co-authored-by: bachuv <15795068+bachuv@users.noreply.github.com>
1 parent 1bb999f commit 20baafb

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

internal/durabletask-protobuf/protos/orchestrator_service.proto

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ message ActivityRequest {
2525
OrchestrationInstance orchestrationInstance = 4;
2626
int32 taskId = 5;
2727
TraceContext parentTraceContext = 6;
28+
map<string, string> tags = 7;
2829
}
2930

3031
message ActivityResponse {
@@ -320,6 +321,10 @@ message SendEntityMessageAction {
320321
}
321322
}
322323

324+
message RewindOrchestrationAction {
325+
repeated HistoryEvent newHistory = 1;
326+
}
327+
323328
message OrchestratorAction {
324329
int32 id = 1;
325330
oneof orchestratorActionType {
@@ -330,6 +335,7 @@ message OrchestratorAction {
330335
CompleteOrchestrationAction completeOrchestration = 6;
331336
TerminateOrchestrationAction terminateOrchestration = 7;
332337
SendEntityMessageAction sendEntityMessage = 8;
338+
RewindOrchestrationAction rewindOrchestration = 9;
333339
}
334340
}
335341

@@ -517,6 +523,7 @@ message PurgeInstanceFilter {
517523
google.protobuf.Timestamp createdTimeFrom = 1;
518524
google.protobuf.Timestamp createdTimeTo = 2;
519525
repeated OrchestrationStatus runtimeStatus = 3;
526+
google.protobuf.Duration timeout = 4;
520527
}
521528

522529
message PurgeInstancesResponse {

0 commit comments

Comments
 (0)