从Celery任务调用内部函数的rdb

时间:2019-06-10 19:21:02

标签: python celery django-celery pdb celery-task

我正在尝试从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) 
   ...

0 个答案:

没有答案