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

Child exiting with unknown reason #355

Closed Zeebzog closed 2 years ago

Zeebzog commented 2 years ago

I apologies that this is more a question than an issue. I am new to using waitress and only call waitress serve on a flask app. so effectively something along the lines of:

from flask import Flask, request, jsonify from waitress import serve app = Flask(name) ... serve(app, host='0.0.0.0', port=65433)

I occasionally (but infrequently) see the following error in the log files: Child exited for unknown reason! (wstatus == 15) I can only assume this is from waitress since everything called inside my @app.route is in a try...except. Is there any way to track down what it causing this?

Kind regards,

stevepiercy commented 2 years ago

When I search the repo for the error message, I get zero results. I tried searching for just "child" and "wstatus", and got nothing relevant. I don't think this is related to waitress.

Zeebzog commented 2 years ago

Thank you for checking.

mmerickel commented 2 years ago

Waitress does not fork / use subprocesses so it's likely not waitress.