Commit 8474092d authored by Andreas Jung's avatar Andreas Jung

Provide a default for fast_listen, if not available

parent 26be135f
......@@ -70,7 +70,7 @@ class HTTPServerFactory(ServerFactory):
self.force_connection_close = section.force_connection_close
# webdav-source-server sections won't have webdav_source_clients:
webdav_clients = getattr(section, "webdav_source_clients", None)
self.fast_listen = getattr(section, 'fast_listen')
self.fast_listen = getattr(section, 'fast_listen', True)
self.webdav_source_clients = webdav_clients
self.use_wsgi = section.use_wsgi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment