Closed mdklatt closed 1 year ago
Even though the client requests the encoding scheme to use for STDERR and STDOUT, returning the scheme as part of the response adds robustness while increasing the response size a negligible amount:
STDERR
STDOUT
{ "response": 0, "stderr": {"content": "some logger output", "encode": null}, "stdout": {"content": "some binary data", "encode": "base64"} }
Issue resolved by commit d47e7f963cf4fe5be162719cd495f6e2284ca622.
Even though the client requests the encoding scheme to use for
STDERR
andSTDOUT
, returning the scheme as part of the response adds robustness while increasing the response size a negligible amount: