My app went down for 10 minutes, and when I look at the logs, I see a lot of:
"Traceback (most recent call last):
File "/base/python27_runtime/python27_lib/versions/1/google/appengine/runtime/wsgi.py", line 187, in Handle
handler = _config_handle.add_wsgi_middleware(self._LoadHandler())
File "/base/python27_runtime/python27_lib/versions/1/google/appengine/runtime/wsgi.py", line 225, in _LoadHandler
handler = __import__(path[0])
File "/base/data/home/apps/s~everyday-app/3.359804434352768230/application/__init__.py", line 21, in <module>
import urls
File "/base/data/home/apps/s~everyday-app/3.359804434352768230/application/urls.py", line 6, in <module>
from application import app, views, util
ImportError: cannot import name views"
But then it stopped happening and is fine now. Was this an app engine issue where it didn't have all the files available for some reason? Or is this something that I need to be changing on my end?
My app runs on Python 2.7 with the Flask framework, and this is the first I've seen of this error.
Thanks!