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
There is an example route to Show method in grpc/index.php. Now run grpcurl -v -plaintext -d '{"slug": "an-example"}' -proto ./src/Controllers/API/blog.proto localhost:8585 blog.Blog/Show
Resolved method descriptor:
// READ one
rpc Show ( .blog.PostRequest ) returns ( .blog.PostResponse );
Request metadata to send:
(empty)
Response headers received:
content-type: application/grpc+proto
date: Sun, 13 Feb 2022 22:31:07 GMT
server: nginx/1.21.3
x-powered-by: PHP/8.1.1
Response trailers received:
(empty)
Sent 1 request and received 0 responses
ERROR:
Code: ResourceExhausted
Message: grpc: received message larger than max (808722512 vs. 4194304)
Even after including grpc.max_receive_message_length on client class. Also testing by PostMan and Kreya shows the 13 Internal error and 'Failed to deserialize response message'
The text was updated successfully, but these errors were encountered:
Describe the bug
Unknown issue on gRPC response
To Reproduce
Steps to reproduce the behavior:
docker-compose up -d
that include requirements for gRPCgrpcurl -v -plaintext -d '{"slug": "an-example"}' -proto ./src/Controllers/API/blog.proto localhost:8585 blog.Blog/Show
Expected behavior
Something like
But I receive:
Even after including
grpc.max_receive_message_length
on client class. Also testing by PostMan and Kreya shows the13 Internal
error and 'Failed to deserialize response message'The text was updated successfully, but these errors were encountered: