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:
jamesread 2021-05-18 21:55:09 +01:00
parent 8584ea5a08
commit 37b10902cb
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ message StartActionResponse {
string stdout = 1;
string stderr = 2;
bool timedOut = 3;
int64 exitCode = 4;
int32 exitCode = 4;
}
service OliveTinApi {