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.
1 parent d31f5fa commit 62ece19Copy full SHA for 62ece19
1 file changed
proto/aquila/aquila.action.proto
@@ -5,6 +5,7 @@ option ruby_package = "Tucana::Aquila";
5
package aquila;
6
7
import "shared.action_configuration.proto";
8
+import "shared.execution_result.proto";
9
import "shared.struct.proto";
10
11
// Event that gets admitted by an action
@@ -37,19 +38,14 @@ message ExecutionRequest {
37
38
int64 project_id = 4;
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
50
oneof result {
51
shared.Value success = 2;
52
- ActionRuntimeError error = 3;
+ shared.RuntimeError error = 3;
53
54
55
0 commit comments