You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem with using the server-side streaming service on Evans. This is the error I get: > call SomeService
command call: json: cannot unmarshal string into Go value of type map[string]interface {}
This is proto definition of service: rpc SomeService(google.protobuf.Empty) returns (stream google.protobuf.BytesValue);
I've checked it with the service that returns a stream of integers and it was fine, so I think the problem lies with the return value.
The text was updated successfully, but these errors were encountered:
Fix issue ktr0731#599
With this change when gojson library cannot unmarshal message from server (which is the case for server side streaming of bytes), then it will display it in base64 format.
I have a problem with using the server-side streaming service on Evans. This is the error I get:
> call SomeService
command call: json: cannot unmarshal string into Go value of type map[string]interface {}
This is proto definition of service:
rpc SomeService(google.protobuf.Empty) returns (stream google.protobuf.BytesValue);
I've checked it with the service that returns a stream of integers and it was fine, so I think the problem lies with the return value.
The text was updated successfully, but these errors were encountered: