فهرست منبع

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

jamesread 5 سال پیش
والد
کامیت
37b10902cb
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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 {