首先,关于flask_context 的问题包括RQ 作业的上下文似乎是常见问题,但我搜索了很多,仍然无法解决我的问题。
我的装饰器功能(在不同的变体中尝试了它们):
def redis_decorator1(f):
def inner_wrapper(*args, **kwargs):
# db interactions
return res
return inner_wrapper
def redis_decorator2(app):
# app.app_context().push()
def wrapper(f):
def inner_wrapper(*args, **kwargs):
# db interactions
return res
return inner_wrapper
return wrapper
...
@redis_decorator
def under_decorator_func(*some_args)
在函数under_decorator_func
中使用flask.current_app
。
问题:
First decorator - RuntimeError: "Working outside of application
context" when redis task starts.
Second decorator - Same error on app start
我也在创建应用程序后立即尝试过app.app_context().push()
,所以我不知道这里发生了什么。