GET /health (unauthenticated).
(self)
| 57 | return data |
| 58 | |
| 59 | def health(self) -> Dict[str, Any]: |
| 60 | """GET /health (unauthenticated).""" |
| 61 | resp = self._session.get(f"{self.base_url}/health", timeout=min(self._timeout, 30.0)) |
| 62 | resp.raise_for_status() |
| 63 | return resp.json() |
nothing calls this directly
no outgoing calls
no test coverage detected