-->

奇怪的错误:Asse田:要求全局变量未设置(Strange error: AssertionErro

2019-09-17 18:23发布

即时得到这个错误很沮丧。 我更新到1.6.6 SDK IM开始看到下面的错误后的第一次我运行某些处理程序。

Asse田:要求全局变量未设置。

堆栈跟踪的重要组成部分

Request global variable is not set.
Traceback (most recent call last):
  File "/base/python27_runtime/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1536, in __call__
    rv = self.handle_exception(request, response, e)
  File "/base/python27_runtime/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1530, in __call__
    rv = self.router.dispatch(request, response)
  File "/base/python27_runtime/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1278, in default_dispatcher
    return route.handler_adapter(request, response)
  File "/base/python27_runtime/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1102, in __call__
    return handler.dispatch()
  File "/base/data/home/apps/s~kobstadendev/1.359392875892326983/main.py", line 81, in dispatch
    webapp2.RequestHandler.dispatch(self)
  File "/base/python27_runtime/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 572, in dispatch
    return self.handle_exception(e, self.app.debug)
  File "/base/python27_runtime/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 570, in dispatch
    return method(*args, **kwargs)
  File "/base/python27_runtime/python27_lib/versions/1/google/appengine/ext/ndb/tasklets.py", line 1009, in synctasklet_wrapper
    return taskletfunc(*args, **kwds).get_result()
  File "/base/python27_runtime/python27_lib/versions/1/google/appengine/ext/ndb/tasklets.py", line 322, in get_result
    self.check_success()
  File "/base/python27_runtime/python27_lib/versions/1/google/appengine/ext/ndb/tasklets.py", line 362, in _help_tasklet_along
    value = gen.send(val)
  File "/base/data/home/apps/s~kobstadendev/1.359392875892326983/items_ndb/items.py", line 439, in get
    user = self.auth.get_user_by_session()
  File "/base/python27_runtime/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 726, in __get__
    value = self.func(obj)
  File "/base/data/home/apps/s~kobstadendev/1.359392875892326983/main.py", line 88, in auth
    return auth.get_auth()
  File "/base/python27_runtime/python27_lib/versions/third_party/webapp2-2.5.1/webapp2_extras/auth.py", line 623, in get_auth
    request = request or webapp2.get_request()
  File "/base/python27_runtime/python27_lib/versions/third_party/webapp2-2.5.1/webapp2.py", line 1720, in get_request
    assert getattr(_local, 'request', None) is not None, _get_request_error
AssertionError: Request global variable is not set.

它看起来像是装了一个新的实例时,心不是在朝好的方向发展。 所以,当一个处理程序被加载并尝试使用

用户= self.auth.get_user_by_session()

webapp2的心不是正确加载,因为如果我刷新,击中同一个实例错误消失。 有没有人见过这个错误,任何帮助或方向将大大apreciated。

编辑:

多一点信息。 我正在使用

libraries:
- name: webapp2
  version: latest

和python 2.7。 我BaseHandler看起来像这样

class BaseHandler(webapp2.RequestHandler):
"""
    BaseHandler for all requests

    Holds the auth and session properties so they are reachable for all requests
"""
def dispatch(self):
    # Get a session store for this request.
    self.session_store = sessions.get_store(request=self.request)
    try:
        # Dispatch the request.
        webapp2.RequestHandler.dispatch(self)
    finally:
        # Save all sessions.
        self.session_store.save_sessions(self.response)

@webapp2.cached_property
def auth(self):
    return auth.get_auth()

@webapp2.cached_property
def session(self):
    # Returns a session using the default cookie key.
    return self.session_store.get_session()

@webapp2.cached_property
def session_store(self):
    return sessions.get_store(request=self.request)

@webapp2.cached_property
def messages(self):
    return self.session.get_flashes(key='_messages')

def add_message(self, message, level=None):
    self.session.add_flash(message, level, key='_messages')

@webapp2.cached_property
def user(self):
    return self.auth.get_user_by_session()

app = ndb.toplevel(webapp2.WSGIApplication(routes.URLS, debug=config.DEBUG, config=config.CONFIG))

东西是错误的webapp2的?

Answer 1:

这似乎是在webapp2的库中的缺陷如这里讨论: https://groups.google.com/forum/?fromgroups=#!topic/webapp2/sHb2RYxGDLc



文章来源: Strange error: AssertionError: Request global variable is not set