(self, context, criteria)
| 431 | raise NotImplementedError |
| 432 | |
| 433 | def list_flights(self, context, criteria): |
| 434 | yield flight.FlightInfo( |
| 435 | pa.schema([]), |
| 436 | flight.FlightDescriptor.for_path('/foo'), |
| 437 | [] |
| 438 | ) |
| 439 | raise flight.FlightInternalError("foo") |
| 440 | |
| 441 | def do_put(self, context, descriptor, reader, writer): |
| 442 | if descriptor.command == b"internal": |
no test coverage detected