aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-cherrypy/test_timeout.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/py3-cherrypy/test_timeout.patch')
-rw-r--r--testing/py3-cherrypy/test_timeout.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/testing/py3-cherrypy/test_timeout.patch b/testing/py3-cherrypy/test_timeout.patch
deleted file mode 100644
index 738ac453227..00000000000
--- a/testing/py3-cherrypy/test_timeout.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-increase time suggested here:
-https://github.com/cherrypy/cherrypy/issues/1896
-
---- a/cherrypy/test/test_static.py
-+++ b/cherrypy/test/test_static.py
-@@ -76,7 +76,7 @@
- class Root:
-
- @cherrypy.expose
-- @cherrypy.config(**{'response.stream': True})
-+ @cherrypy.config(**{'response.stream': True, 'server.socket_timeout': 5})
- def bigfile(self):
- self.f = static.serve_file(bigfile_filepath)
- return self.f