Skip to content

Commit dc81024

Browse files
committed
chore: Add taskExecutionId field
Signed-off-by: Javier Aliaga <[email protected]>
1 parent dd68c9c commit dc81024

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

protos/orchestrator_service.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ message ActivityRequest {
2424
OrchestrationInstance orchestrationInstance = 4;
2525
int32 taskId = 5;
2626
TraceContext parentTraceContext = 6;
27+
string taskExecutionId = 7;
2728
}
2829

2930
message ActivityResponse {
@@ -94,16 +95,19 @@ message TaskScheduledEvent {
9495
google.protobuf.StringValue version = 2;
9596
google.protobuf.StringValue input = 3;
9697
TraceContext parentTraceContext = 4;
98+
string taskExecutionId = 5;
9799
}
98100

99101
message TaskCompletedEvent {
100102
int32 taskScheduledId = 1;
101103
google.protobuf.StringValue result = 2;
104+
string taskExecutionId =3;
102105
}
103106

104107
message TaskFailedEvent {
105108
int32 taskScheduledId = 1;
106109
TaskFailureDetails failureDetails = 2;
110+
string taskExecutionId =3;
107111
}
108112

109113
message SubOrchestrationInstanceCreatedEvent {
@@ -256,6 +260,7 @@ message ScheduleTaskAction {
256260
string name = 1;
257261
google.protobuf.StringValue version = 2;
258262
google.protobuf.StringValue input = 3;
263+
string taskExecutionId = 4;
259264
}
260265

261266
message CreateSubOrchestrationAction {

0 commit comments

Comments
 (0)