From d6d5eaaad67e4472dacf34c8c406d04bfeda943c Mon Sep 17 00:00:00 2001 From: Javier Aliaga Date: Mon, 16 Jun 2025 13:31:28 +0200 Subject: [PATCH 1/3] chore: Add taskExecutionId field Signed-off-by: Javier Aliaga --- protos/orchestrator_service.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/protos/orchestrator_service.proto b/protos/orchestrator_service.proto index 17c4007..c468795 100644 --- a/protos/orchestrator_service.proto +++ b/protos/orchestrator_service.proto @@ -29,6 +29,7 @@ message ActivityRequest { OrchestrationInstance orchestrationInstance = 4; int32 taskId = 5; TraceContext parentTraceContext = 6; + string taskExecutionId = 7; } message ActivityResponse { @@ -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 { @@ -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 { From be490c528f8843e6d3008089d53ef798482c774a Mon Sep 17 00:00:00 2001 From: Javier Aliaga Date: Mon, 16 Jun 2025 16:15:14 +0200 Subject: [PATCH 2/3] fix: indentation Signed-off-by: Javier Aliaga --- protos/orchestrator_service.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protos/orchestrator_service.proto b/protos/orchestrator_service.proto index c468795..60beeff 100644 --- a/protos/orchestrator_service.proto +++ b/protos/orchestrator_service.proto @@ -106,7 +106,7 @@ message TaskScheduledEvent { message TaskCompletedEvent { int32 taskScheduledId = 1; google.protobuf.StringValue result = 2; - string taskExecutionId =3; + string taskExecutionId = 3; } message TaskFailedEvent { From ecfd5c8901a7d971975d27f347ca75ea852d57ea Mon Sep 17 00:00:00 2001 From: Javier Aliaga Date: Mon, 16 Jun 2025 16:16:02 +0200 Subject: [PATCH 3/3] fix: Indentation Signed-off-by: Javier Aliaga --- protos/orchestrator_service.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protos/orchestrator_service.proto b/protos/orchestrator_service.proto index 60beeff..214f23a 100644 --- a/protos/orchestrator_service.proto +++ b/protos/orchestrator_service.proto @@ -112,7 +112,7 @@ message TaskCompletedEvent { message TaskFailedEvent { int32 taskScheduledId = 1; TaskFailureDetails failureDetails = 2; - string taskExecutionId =3; + string taskExecutionId = 3; } message SubOrchestrationInstanceCreatedEvent {