From 37b10902cb7623071e17f292afa0949ecbcd4191 Mon Sep 17 00:00:00 2001 From: jamesread Date: Tue, 18 May 2021 21:55:09 +0100 Subject: [PATCH] Introduced a bug, as protojson marshals int64 to string for json - and we dont want to deal with strings. Instead used int32. --- OliveTin.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OliveTin.proto b/OliveTin.proto index 33bb702..b93fd60 100644 --- a/OliveTin.proto +++ b/OliveTin.proto @@ -22,7 +22,7 @@ message StartActionResponse { string stdout = 1; string stderr = 2; bool timedOut = 3; - int64 exitCode = 4; + int32 exitCode = 4; } service OliveTinApi {