Refactor #2658
closedUpdate Pulp's apply_async function signature to conform with Celery's
100%
Description
Currently pulp's apply_async function signature[0] does not explicitly match Celery's [1]
This has caused some confusion over what to pass to Pulp's apply_async [2]
Refactoring our apply_async signature to take in the keyword arguments 'args' and 'kwargs' may be ugly, but it does explicitly state that these are the arguments that Celery passes to a task. It also allows us to distinguish between the arguments for celery, and the arguments for our task.
We should also document how to kick off Pulp3 apply_async and apply_async_with_reservations tasks in a blog post
[0] https://github.com/pulp/pulp/blob/3.0-dev/tasking/pulp/tasking/tasks.py#L211
[1] http://docs.celeryproject.org/en/latest/reference/celery.app.task.html#celery.app.task.Task.apply_async
[2] https://github.com/pulp/pulp/pull/2971
Update apply_async and apply_async_with_reservations signatures
closes #2658 https://pulp.plan.io/issues/2658