From 010d54aef4f1aa5e4dcea9d68f437e6ce885c127 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 16 Jul 2016 01:05:31 +0530 Subject: [PATCH] Increase it some more --- src/calibre/srv/tests/web_sockets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/srv/tests/web_sockets.py b/src/calibre/srv/tests/web_sockets.py index 5935f3ba01..55bdd8a2bf 100644 --- a/src/calibre/srv/tests/web_sockets.py +++ b/src/calibre/srv/tests/web_sockets.py @@ -148,7 +148,7 @@ class WSClient(object): class WSTestServer(TestServer): def __init__(self, handler): - TestServer.__init__(self, None, shutdown_timeout=0.5) + TestServer.__init__(self, None, shutdown_timeout=5) from calibre.srv.http_response import create_http_handler self.loop.handler = create_http_handler(websocket_handler=handler())