vmagamedov / grpclib

Pure-Python gRPC implementation for asyncio
http://grpclib.readthedocs.io
BSD 3-Clause "New" or "Revised" License
936 stars 92 forks source link

'Channel' object has no attribute 'request' #178

Closed RuofengX closed 1 year ago

RuofengX commented 1 year ago

Same issue to https://github.com/grpc/grpc/issues/27817

Issue happens here when I run the space.py: https://github.com/RuofengX/game.entropy.press/blob/10aad2df8b51bfeb506be4f584e73d8bb29eaf1d/src/workload.py#L21

vmagamedov commented 1 year ago

You mix incompatible generated stubs and libraries.

All these things are not interchangeable, these are two different incompatible projects. They only use the same protobuf messages and the same protoc compiler.

RuofengX commented 1 year ago

Worked, thanks.