(self)
| 55 | stop_event_task.cancel() |
| 56 | |
| 57 | def start(self): |
| 58 | started = threading.Event() |
| 59 | self.thread = threading.Thread( |
| 60 | target=self._start_thread, args=(started,)) |
| 61 | self.thread.start() |
| 62 | if not started.wait(timeout=2): |
| 63 | raise RuntimeError('fuzzer proxy failed to start') |
| 64 | |
| 65 | def stop(self): |
| 66 | self.loop.call_soon_threadsafe(self._stop) |
no outgoing calls
no test coverage detected