(self, context, descriptor, reader, writer)
| 24 | |
| 25 | class Server(flight.FlightServerBase): |
| 26 | def do_put(self, context, descriptor, reader, writer): |
| 27 | time.sleep(1) |
| 28 | raise flight.FlightCancelledError("") |
| 29 | |
| 30 | |
| 31 | if __name__ == "__main__": |
no outgoing calls