Commit 15f57dfb authored by Vincent Pelletier's avatar Vincent Pelletier

WSGI: Use select.poll instead of select.select .

Avoids the infamous 1024 file descriptor limit. No functional change
expected, as it seems unlikely this bug ever triggered on waitress-managed
file descriptors.
parent 1e82948c
Pipeline #16838 failed with stage
in 0 seconds
......@@ -178,4 +178,5 @@ def runwsgi():
listen=args.address,
logger=logging.getLogger("access"),
threads=conf.zserver_threads,
asyncore_use_poll=True,
).run()
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