Why does wfastcgi error out on sys.stdin.detach().read(8)?

1.1k Views Asked by At

I deployed a website using Azure Web Apps service, which is going to be mainly used as an API. The problem is that wfastcgi every so often throws out an error and the website goes down. The problem is that starting it back up takes a while, because the API is a prediction model and it needs to load some data.

The site runs on the Azure Web App python extension (tried both 3.6.4 and 3.5.4, both give the same error).

Used packages:

click==6.7
Flask==1.0.2
itsdangerous==0.24
Jinja2==2.9.6
MarkupSafe==1.0
Werkzeug==0.12.2
pandas==0.23.3
keras==2.2.0
scikit-learn==0.19.1
tensorflow==1.8.0

Error code:

2018-10-02 16:20:59.497482: Unhandled exception in wfastcgi.py: Traceback (most recent call last):
  File "D:\home\python354x64\wfastcgi.py", line 774, in main
    record = read_fastcgi_record(fcgi_stream)
  File "D:\home\python354x64\wfastcgi.py", line 158, in read_fastcgi_record
    data = stream.read(8)     # read record
OSError: [Errno 22] Invalid argument
2018-10-02 16:20:59.513123: Running on_exit tasks
2018-10-02 16:20:59.513123: wfastcgi.py 3.0.0 closed

As far as I can tell, it errors out on this command:

sys.stdin.detach().read(8)

Any ideas what might be causing this? Thank you!

0

There are 0 best solutions below