waitress icon indicating copy to clipboard operation
waitress copied to clipboard

Waitress - A WSGI server for Python 3

Results 25 waitress issues
Sort by recently updated
recently updated
newest added

`__nonzero__` is not used in python3. And since [`setup.py` declares](https://github.com/Pylons/waitress/blob/ec0e1655c4bba1411bf65dc9f0f03fdfb0e4fc74/setup.cfg#L40) python3.7 support only, I think it is safe to remove these methods. I found this while working on `typeshed` types...

One particular user keeps submitting a request to my server that causes it to crash with an uncaptured python exception. Below is the request and corresponding error: ``` [2022-Jul-03 01:05]...

this will help users to hide the server details from waitress generated error response with the help of ident value. Some organization don't want to expose there server details to...

See discussions: [astropy/astropy#11091](https://github.com/astropy/astropy/pull/11091) [pypa/pip#7413](https://github.com/pypa/pip/issues/7413) ```console [tkloczko@devel-g2v waitress-2.1.2]$ grep -r pkg_resources docs/conf.py:import pkg_resources docs/conf.py:version = pkg_resources.get_distribution("waitress").version ```

Is HTTP/3 in the roadmap for waitress? Or has someone done this on a fork? Any help would be much appreciated.

Is it possible to grab Waitress metrics (how many channels currently active, how many threads active, how many TCP connections open, for example)? Is this currently possible? If not, I...

I think there's an appetite for waitress to be able to shutdown applications gracefully. I use waitress independently of pylons for a wide variety of micro-services. On line 263 of...

Hi! Thanks you for making this library. I have code like this in my `main.py` file: ``` from waitress import serve # ... serve(app, host='0.0.0.0', port=8080) ``` I run file...

This is related to the various proxy settings, ever since 1.2.0 they have been set to warn about impending deprecation, with the pending release of 2.0, it'll be nice to...

Currently, when waitress receives a SIGINT or traps a SystemExit exception, it tries to shutdown the running task dispatcher. The shutdown method embeds inside its function signature a hardcoded timeout...