Forums

My app is no longer serving

Hello, Since 16:00 today, my app has not handled any messages posted to it. I have not changed the configuration in any way, although I have been working intently on flask_app.py. Please see the Server logs for my site. Beginning at 15:29 today there is a lot of activity. Anything suspect? On the Access log, you can see that I have received several Posts, but the app never seems to see it. Thanks

It looks like there client was disconnecting before the request was fully processed (you can also compare it with the access log). You may increase the timeout on the client and/or check what is causing the slower responses.

I haven't experienced any such timeouts in months. I'm not seeing the POSTs in the access log, yet lots of activity in the Service log. How do I as a simple guy set the timeout?

I have made no structural or configuration changes to my site, only modifying my flask_app.py file. But now I received 3 new post calls to my address and my code is not handling them. Anyone else have such problems? I have no errors in my error log, but 3 POSTS in my access log. Please advise. Thanks

If there are POSTs in your access log, then your web app saw the request and responded to it. The request is logged in the access log when the response has been sent.

You will need to check the documentation for go-http client to see how you can increase the timeout.

I loaded Postman and a JSON checker. I found an error in the inbound JSON and 500 server errors alerted me to compile issues. Seems fixed now. Thanks

Glad to hear that it works!