django-celery:bind = True失败,接受2个位置参数,但给出了3个

时间:2018-07-17 09:41:29

标签: django python-3.x django-celery

如果尝试失败,我将尝试重试。这是我的任务,

@shared_task(queue='es', bind=True, max_retries=3)
def update_station_es_index(doc_id, doc_body):
    """
    Celery consumer method for updating ES.
    """
    try:
        #es_client is connecting to ElasticSearch
        es_client.update_stations(id=doc_id, body=doc_body)
    except Exception as e:
        self.retry(exc=e)

但是调用此任务时出现此错误,

TypeError: update_station_es_index() takes 2 positional arguments but 3 were given

我没有在网络上找到足够的帮助来解决此错误,只是this github issue,但这并不能解释太多。

谁能告诉我这是怎么回事,解决方案是什么?

使用Django2.0.5和celery4.2.0

1 个答案:

答案 0 :(得分:4)

您必须添加self作为参数。当您指定bind=True时,任务本身将作为第一个参数传递。

假设您有一个标准任务add,它需要两个参数

@shared_task
def add(x, y):
    return x + y

如果您为此任务指定bind=True,它将需要接受另一个参数。

@shared_task(bind=True)
def add(self, x, y):
    # ...

所以改变

def update_station_es_index(doc_id, doc_body):

def update_station_es_index(self, doc_id, doc_body):