Skip to content

Commit 842ece7

Browse files
Merge pull request #294 from code0-tech/#293-execution-id-to-action
added wrapper object containing result and identifier
2 parents 4bc693e + 188d6b7 commit 842ece7

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

proto/aquila/aquila.action.proto

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ message ActionExecutionRequest {
3636
int64 project_id = 4;
3737
}
3838

39+
message ActionExecutionResponse {
40+
// Execution identifier of execution
41+
string execution_identifier = 1;
42+
// Result of execution
43+
shared.NodeExecutionResult node_result = 2;
44+
}
45+
3946
message ActionTransferRequest {
4047
oneof data {
4148
// Identification of the action
@@ -46,7 +53,7 @@ message ActionTransferRequest {
4653
// Event that got admitted
4754
ActionEvent event = 2;
4855
// Result of execution that was triggered by a execution request
49-
shared.NodeExecutionResult result = 3;
56+
ActionExecutionResponse result = 3;
5057
}
5158
}
5259

0 commit comments

Comments
 (0)