Skip to content
Merged
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
5 changes: 5 additions & 0 deletions protos/orchestrator_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ message ActivityRequest {
OrchestrationInstance orchestrationInstance = 4;
int32 taskId = 5;
TraceContext parentTraceContext = 6;
string taskExecutionId = 7;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What value is to be expected here and by who?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

}

message ActivityResponse {
Expand Down Expand Up @@ -99,16 +100,19 @@ message TaskScheduledEvent {
google.protobuf.StringValue version = 2;
google.protobuf.StringValue input = 3;
TraceContext parentTraceContext = 4;
string taskExecutionId = 5;
}

message TaskCompletedEvent {
int32 taskScheduledId = 1;
google.protobuf.StringValue result = 2;
string taskExecutionId = 3;
}

message TaskFailedEvent {
int32 taskScheduledId = 1;
TaskFailureDetails failureDetails = 2;
string taskExecutionId = 3;
}

message SubOrchestrationInstanceCreatedEvent {
Expand Down Expand Up @@ -263,6 +267,7 @@ message ScheduleTaskAction {
google.protobuf.StringValue version = 2;
google.protobuf.StringValue input = 3;
optional TaskRouter router = 4;
string taskExecutionId = 5;
}

message CreateSubOrchestrationAction {
Expand Down