From 363e1da07c89084724e764e03e4c2392a19b1208 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sun, 28 Sep 2025 21:55:29 +0100 Subject: [PATCH] restore timeouts --- tests/async/test_admin.py | 3 +-- tests/common/test_admin.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/async/test_admin.py b/tests/async/test_admin.py index f2413f3..62806cb 100644 --- a/tests/async/test_admin.py +++ b/tests/async/test_admin.py @@ -21,8 +21,7 @@ def with_instrumented_server(auth=False, **ikwargs): def decorator(f): @wraps(f) def wrapped(self, *args, **kwargs): - sio = socketio.AsyncServer(async_mode='asgi', ping_interval=5, - ping_timeout=4) + sio = socketio.AsyncServer(async_mode='asgi') @sio.event async def enter_room(sid, data): diff --git a/tests/common/test_admin.py b/tests/common/test_admin.py index 910b742..a384789 100644 --- a/tests/common/test_admin.py +++ b/tests/common/test_admin.py @@ -18,8 +18,7 @@ def with_instrumented_server(auth=False, **ikwargs): def decorator(f): @wraps(f) def wrapped(self, *args, **kwargs): - sio = socketio.Server(async_mode='threading', ping_interval=5, - ping_timeout=4) + sio = socketio.Server(async_mode='threading') @sio.event def enter_room(sid, data):