app.celery.ContextTask.add_to_chord

ContextTask.add_to_chord(sig, lazy=False)

Add signature to the chord the current task is a member of.

New in version 4.0.

Currently only supported by the Redis result backend.

Parameters
  • sig (Signature) – Signature to extend chord with.

  • lazy (bool) – If enabled the new task won’t actually be called, and sig.delay() must be called manually.