mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-25 16:31:24 +02:00
* fixes #12150 * reworked from !15083 * part of #12404 * part of #11104 * enable tests * take over maintainership
15 lines
492 B
Diff
15 lines
492 B
Diff
increase time suggected 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
|