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
It is incompatible with QuerierWrapper's query because query requires a json-decodable response (but the gRPC query is protobuf). query_raw works, but requires already-serialized input and is hard to use.
Document this on the gRPC query (and maybe add sample code on how to query)
Refactor out the part of the query function without the from_json call (that's what fails for gRPC).
Maybe we want to provide a direct query_grpc(path, data) -> Binary function using the refactored out part?
The text was updated successfully, but these errors were encountered:
It is incompatible with
QuerierWrapper
'squery
becausequery
requires a json-decodable response (but the gRPC query is protobuf).query_raw
works, but requires already-serialized input and is hard to use.query
function without thefrom_json
call (that's what fails for gRPC).query_grpc(path, data) -> Binary
function using the refactored out part?The text was updated successfully, but these errors were encountered: