()
| 342 | return False |
| 343 | |
| 344 | def _runner() -> None: |
| 345 | try: |
| 346 | asyncio.run(self.refresh(force=force)) |
| 347 | except Exception as exc: |
| 348 | logger.warning("Benchmark background refresh failed: %s", exc) |
| 349 | |
| 350 | self._refresh_thread = threading.Thread( |
| 351 | target=_runner, |