We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3daf96c + 5013ee0 commit 0dbe35eCopy full SHA for 0dbe35e
1 file changed
proto/aquila/aquila.action.proto
@@ -37,12 +37,20 @@ message ExecutionRequest {
37
int64 project_id = 4;
38
}
39
40
+message ActionRuntimeError {
41
+ string code = 1;
42
+ optional string description = 2;
43
+}
44
+
45
// Result from executed flows by an action
46
message ExecutionResult {
47
// Identifier of flow to execute
48
string execution_identifier = 1;
49
// Result of executed flow
- shared.Value result = 2;
50
+ oneof result {
51
+ shared.Value success = 2;
52
+ ActionRuntimeError error = 3;
53
+ }
54
55
56
message TransferRequest {
0 commit comments