假设我有一些obj
,可以进行一些操作。
失败时,我想更改obj
的属性并以较低的soft_time_limit
class SomeClass:
flag = True
def do():
if flag:
# do something
else:
# do something different
obj = SomeClass()
@app.bind(soft_time_limit=7)
def do_something(o):
o.do()
# if everything correct, do nothing, on exception (including timeout) change the flag and rerun, soft_time_limit should be 5
o.flag = False
o.do()
# return result or raise exception if any, no mo retries
我是芹菜的新手,不知道该怎么做。我试图编写基于类的Task
,但没有成功。
唯一的要求是所有这些都应在一个任务/进程下运行。