QQ: if I have 2 different hooks: A and B, where bo...
# questions
e
QQ: if I have 2 different hooks: A and B, where both uses
after_pipeline_run
how do I set the order of execution?
n
thankyou 1
TL;DR hooks order shouldn’t be mattered in most case, and you should not relies on the order. If there are something that need to be triggered first, i.e. setting up connection etc. You can use the
tryfirst
argument, which is support by
pluggy
natively.
đź‘Ť 1