构建访客会话相关连接池限制。
()
| 53 | |
| 54 | |
| 55 | def _build_limits() -> httpx.Limits: |
| 56 | """构建访客会话相关连接池限制。""" |
| 57 | return httpx.Limits( |
| 58 | max_keepalive_connections=AUTH_HTTP_MAX_KEEPALIVE_CONNECTIONS, |
| 59 | max_connections=AUTH_HTTP_MAX_CONNECTIONS, |
| 60 | ) |
| 61 | |
| 62 | |
| 63 | def _build_async_client(read_timeout: float = 30.0) -> httpx.AsyncClient: |
no outgoing calls
no test coverage detected