我正在尝试从celery任务调用的函数中使用“ rbd”。但是它并没有就此停止。我也使用了remote_pdb,但是没有运气。
from celery.contrib import rdb;
import remote_pdb;
def run_job(args):
....
rdb.set_trace() # doesn't get into pdb here
...
@periodic_task(run_every=10)
def poller():
...
...
rdb.set_trace() # gets into pdb
run_job(args)
...