Explorar o código

Introduced a bug, as protojson marshals int64 to string for json - and we dont want to deal with strings. Instead used int32.

jamesread %!s(int64=5) %!d(string=hai) anos
pai
achega
37b10902cb
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      OliveTin.proto

+ 1 - 1
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 {