oscdc
Results
1
issues of
oscdc
Hi, we've been using `grpcext.intercept_server()` `UnaryServerInterceptor` and inspecting the server's return `code` like this: ```python def intercept_unary(self, request, servicer_context, server_info, handler): try: handler(request, servicer_context) except: code = servicer_context._state.code ... ```...