Same here, except I'm having this issue with a Flask application. In my error_log
, only:
2015-01-06 02:36:12,090 :IOError: write error
2015-01-06 02:36:12,099 :RuntimeError: generator ignored GeneratorExit
And, in my server_log
, all I see is the
--- no python application found, check your startup logs for errors ---
I have two apps, both using the same WSGI file and run off the same codebase. One of my apps works perfectly, while the other just spits out an Internal Server Error. Interestingly enough, my static directory's contents are still being served up as expected, even from the app which returns the error.
If it makes any difference, I'm not using a database in either of my apps.
Update:
I'm now getting a:
Error code: 504-loadbalancer
and then a
Error code: 502-loadbalancer
error when I go to my app's URL. And, my static directory's content is no longer being served up.
Thanks for the help!