| 342 | |
| 343 | |
| 344 | class ClientConnection(ClientProtocol): |
| 345 | def __init__(self, *args: Any, **kwargs: Any) -> None: |
| 346 | warnings.warn( # deprecated in 11.0 - 2023-04-02 |
| 347 | "ClientConnection was renamed to ClientProtocol", |
| 348 | DeprecationWarning, |
| 349 | ) |
| 350 | super().__init__(*args, **kwargs) |
| 351 | |
| 352 | |
| 353 | BACKOFF_INITIAL_DELAY = float(os.environ.get("WEBSOCKETS_BACKOFF_INITIAL_DELAY", "5")) |
no outgoing calls
searching dependent graphs…