Skip to content

Commit 9862ba6

Browse files
authored
Merge pull request #13 from javier-aliaga/javi-add-activity-execution-id
feat: Add taskExecutionId field
2 parents 1b7094d + ecfd5c8 commit 9862ba6

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
@@ -29,6 +29,7 @@ message ActivityRequest {
2929
OrchestrationInstance orchestrationInstance = 4;
3030
int32 taskId = 5;
3131
TraceContext parentTraceContext = 6;
32+
string taskExecutionId = 7;
3233
}
3334

3435
message ActivityResponse {
@@ -99,16 +100,19 @@ message TaskScheduledEvent {
99100
google.protobuf.StringValue version = 2;
100101
google.protobuf.StringValue input = 3;
101102
TraceContext parentTraceContext = 4;
103+
string taskExecutionId = 5;
102104
}
103105

104106
message TaskCompletedEvent {
105107
int32 taskScheduledId = 1;
106108
google.protobuf.StringValue result = 2;
109+
string taskExecutionId = 3;
107110
}
108111

109112
message TaskFailedEvent {
110113
int32 taskScheduledId = 1;
111114
TaskFailureDetails failureDetails = 2;
115+
string taskExecutionId = 3;
112116
}
113117

114118
message SubOrchestrationInstanceCreatedEvent {
@@ -263,6 +267,7 @@ message ScheduleTaskAction {
263267
google.protobuf.StringValue version = 2;
264268
google.protobuf.StringValue input = 3;
265269
optional TaskRouter router = 4;
270+
string taskExecutionId = 5;
266271
}
267272

268273
message CreateSubOrchestrationAction {

0 commit comments

Comments
 (0)