Skip to content Skip to sidebar Skip to footer
Showing posts with the label Grpc

Grpc: When Compiling Proto Files Into Python From Maven, Grpc.py Files Are Missing

When I generate grpc files from python (running python -m grpc_tools.protoc), I get 2 files for eac… Read more Grpc: When Compiling Proto Files Into Python From Maven, Grpc.py Files Are Missing

Mocking Grpc Status Code ('rpcerror' Object Has No Attribute 'code') In Flask App

I have to create a unittest that should mock a specific grpc status code (in my case I need NOT_FOU… Read more Mocking Grpc Status Code ('rpcerror' Object Has No Attribute 'code') In Flask App

How To Increase Message Size In Grpc Using Python

I am using grpc for message passing and am testing a simple server and client. When my message siz… Read more How To Increase Message Size In Grpc Using Python

Tracing A Python Grpc Server Deployed On Cloud Run With Opentelemetry

I'm running a Python gRPC server on Cloud Run and attempting to add instrumentation to capture … Read more Tracing A Python Grpc Server Deployed On Cloud Run With Opentelemetry

Make Grpc Messages Json Serializable

I have a gRPC definition that contains repeated scalar values. For example message Request { boo… Read more Make Grpc Messages Json Serializable