Parcourir la source

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

jamesread il y a 5 ans
Parent
commit
37b10902cb
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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 {