Run self.crawler_process.start() in a separate thread.
(self)
| 125 | return loop |
| 126 | |
| 127 | def _start_crawler_thread(self) -> None: |
| 128 | """Run self.crawler_process.start() in a separate thread.""" |
| 129 | assert self.crawler_process |
| 130 | t = Thread( |
| 131 | target=self.crawler_process.start, |
| 132 | kwargs={"stop_after_crawl": False, "install_signal_handlers": False}, |
| 133 | ) |
| 134 | t.daemon = True |
| 135 | t.start() |
no test coverage detected