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
The current error output is titlecase ({"Error": "...", "Code": "..."}) when it should be lowercase ({"error": "...", "code": "..."}). This appears to be due to errorBody implementing proto.Message interface but lacking protobuf tags needed to marshal correctly. When I patch errorBody with the following I end up with correct behavior:
The current error output is titlecase (
{"Error": "...", "Code": "..."}
) when it should be lowercase ({"error": "...", "code": "..."}
). This appears to be due toerrorBody
implementingproto.Message
interface but lacking protobuf tags needed to marshal correctly. When I patch errorBody with the following I end up with correct behavior:The text was updated successfully, but these errors were encountered: