()
| 86 | cls._loop = asyncio.new_event_loop() |
| 87 | |
| 88 | def run_loop(): |
| 89 | asyncio.set_event_loop(cls._loop) |
| 90 | cls._logger.debug("Starting the asyncio loop") |
| 91 | cls._loop.run_forever() |
| 92 | |
| 93 | cls._thread = threading.Thread(target=run_loop) |
| 94 | cls._thread.start() |
nothing calls this directly
no outgoing calls
no test coverage detected