(self)
| 177 | return True |
| 178 | |
| 179 | def _watchdog_loop(self): |
| 180 | while not self._stop_signaled: |
| 181 | try: |
| 182 | self._run_watchdog() |
| 183 | except Exception: |
| 184 | log.exception("Error running watchdog") |
| 185 | |
| 186 | def _run_watchdog(self): |
| 187 | batch_size = max(1, self._request_queue.size()) |
nothing calls this directly
no test coverage detected