I need to run a celery task retry inside the current task, and want to simplify this call (I have about 15 tasks like this).
How can I call the function inside itself, if I don't have the name and the kwargs?
def f(a=1, b=2, c=3):
__this_function__(**kwargs)