Starting from yesterday, I now get the following error when I try to load my home page. This started happening after I redeployed some changes
.....The
process handling this request unexpectedly died. This is likely to cause
a new process to be used for the next request to your application.
(Error code 203).....
This has nothing to do with my code because everything works on my local machine. I even changed the handler on my home page route to just return "Done" but I'm still getting the error i.e. I currently have
@app.route("/")
def homePageHandler():
return "Done"