grpc
grpc copied to clipboard
[Documentation] fix asyncio Server and Channel stop() method documentation
The stop/cancel methods actually wait if a grace period is specified, and do not "return immediately":
- https://github.com/grpc/grpc/blob/5227db884d77d575158adc3bcafed6a423c5b8c4/src/python/grpcio/grpc/_cython/_cygrpc/aio/server.pyx.pxi#L1060-L1063
- https://github.com/grpc/grpc/blob/5227db884d77d575158adc3bcafed6a423c5b8c4/src/python/grpcio/grpc/aio/_channel.py#L444
- https://github.com/grpc/grpc/blob/5227db884d77d575158adc3bcafed6a423c5b8c4/src/python/grpcio/grpc/_server.py#L1253