Django - Celery and Background Tasks
Given this Celery task:
@shared_task
def multiply(x, y):
return x * y
What will result = multiply.delay(3, 4) return?