Pylons / waitress

Waitress - A WSGI server for Python 3
https://docs.pylonsproject.org/projects/waitress/en/latest/
Other
1.44k stars 164 forks source link

File not found from waitress\wasyncore.py #413

Closed dhfbrown closed 1 year ago

dhfbrown commented 1 year ago

Capture

I have the following error (I had to screen grab as on a clients site). Does anyone understand this issue and how to resolve it?

Many thanks

digitalresistor commented 1 year ago

The traceback shows that it is failing to create a temporary file. Waitress needs the ability to create temporary files for buffering.

dhfbrown commented 1 year ago

Thanks. Would changing the TMP path change where it would write to?

digitalresistor commented 1 year ago

Waitress is using tempfile from Python, so yes I believe changing that environment variable would change where it writes. The path that is listed though should work since it's in AppData\Local\Temp.