It's been quite a few days but 500 errors still keep showing up. To
track down those errors, i have set debugging at each and every point
of my code, but none of the debug points are hit. Instead i think the
request is getting lost at the very start itself. Below is my setup
****************************************************************
imports ........
class ClassNameTmp(webapp.RequestHandler):
def get(self):
logging.info(self.__class__.__name__+'. Page load point 1')
try:
logging.info(self.__class__.__name__+'. Page load point
2')
except DeadlineExceededError:
logging.critical(self.__class__.__name__+'. Script
DeadlineExceededError Error')
self.redirect("/error")
return
def main():
application = webapp.WSGIApplication([('/classnametmp',
ClassNameTmp)],
debug=True)
run_wsgi_app(application)
if __name__ == "__main__":
main()
****************************************************************
When the app hits the 500 error, i don't even see the message from
logging.info(self.__class__.__name__+'. Page load point 1') in the
logs.
Anyone, any idea as to what might be going on here?
Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---