Introduced a bug, as protojson marshals int64 to string for json - and we dont want to deal with strings. Instead used int32.
This commit is contained in:
parent
8584ea5a08
commit
37b10902cb
|
|
@ -22,7 +22,7 @@ message StartActionResponse {
|
|||
string stdout = 1;
|
||||
string stderr = 2;
|
||||
bool timedOut = 3;
|
||||
int64 exitCode = 4;
|
||||
int32 exitCode = 4;
|
||||
}
|
||||
|
||||
service OliveTinApi {
|
||||
|
|
|
|||
Loading…
Reference in New Issue