Skip to content

Commit

Permalink
Merge pull request #59 from zykron1/master
Browse files Browse the repository at this point in the history
Fix a gRPC error
  • Loading branch information
itsluketwist authored Aug 23, 2023
2 parents f5c7b3d + 824c961 commit 8370394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sonora/asgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ async def _do_grpc_request(self, rpc_method, context, receive, send):
raise NotImplementedError

request_proto_iterator = (
rpc_method.request_deserializer(message)
rpc_method.request_deserializer(bytes(message))
async for _, _, message in unwrap_message(receive)
)

Expand Down

0 comments on commit 8370394

Please sign in to comment.