Django - Celery and Background Tasks
Given this task definition:
What will
from celery import shared_task
@shared_task
def add(x, y):
return x + y
result = add.delay(4, 5)What will
result.get() return?