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 Followed Your example and create a couple of endpoints and tried with grpc and rest clients.
Both End in failures with the following error
rpc error: code = Unavailable desc = unavailable
also i noticed for no reason, the client inside the server which proxies the requests keeps calling * endpoint nonstop in 1 second intervals.
i was trying in insecure mode.
The text was updated successfully, but these errors were encountered:
I guess without tls, you end-up running http1.1 which is time limited and going to be cancelled once in a while. That is my guess, i never tried to run insecure grpc server with grpc-gateway myself. Try to turn it into secure connection to establish a single connection via http2.
I Followed Your example and create a couple of endpoints and tried with grpc and rest clients.
Both End in failures with the following error
rpc error: code = Unavailable desc = unavailable
also i noticed for no reason, the client inside the server which proxies the requests keeps calling * endpoint nonstop in 1 second intervals.
i was trying in insecure mode.
The text was updated successfully, but these errors were encountered: