(token)
| 336 | auth_token = None |
| 337 | |
| 338 | def re_auth_callback(token): |
| 339 | nonlocal auth_token |
| 340 | auth_token = token |
| 341 | with mock_pool._lock: |
| 342 | for conn in mock_pool._available_connections: |
| 343 | conn.send_command("AUTH", token.try_get("oid"), token.get_value()) |
| 344 | conn.read_response() |
| 345 | |
| 346 | mock_pool.re_auth_callback = re_auth_callback |
| 347 |
nothing calls this directly
no test coverage detected