0 votes
in Celery by

Consider a chain

res = chain(add.s(4, 4), mul.s(8), mul.s(10))()

where add is defined as a+b and mul is defined as a*b. How can we get intermediate parent results

a) res.parent.parent

b) res.parent.get()

c) res.parent.parent.get()

d) All the options

1 Answer

0 votes
by

c) res.parent.parent.get()

Related questions

0 votes
0 votes
asked Jun 19, 2022 in Celery by john ganales
0 votes
asked Jun 16, 2022 in Celery by john ganales
...