(coordinator, worker)
| 284 | |
| 285 | |
| 286 | def run_worker(coordinator, worker): |
| 287 | while coordinator.is_active(): |
| 288 | worker.start() |
| 289 | try: |
| 290 | worker.run() |
| 291 | except Exception as e: |
| 292 | worker.handle_exception(e) |
| 293 | finally: |
| 294 | worker.finish() |
nothing calls this directly
no test coverage detected
searching dependent graphs…