A Flight server that tests ListActions.
| 325 | |
| 326 | |
| 327 | class ListActionsErrorFlightServer(FlightServerBase): |
| 328 | """A Flight server that tests ListActions.""" |
| 329 | |
| 330 | def list_actions(self, context): |
| 331 | yield ("action-1", "") |
| 332 | yield "foo" |
| 333 | |
| 334 | |
| 335 | class CheckTicketFlightServer(FlightServerBase): |
no outgoing calls