Is it possible to ignore task results on a per-invocation basis?
For example, so I can ignore the results of tasks when they are being run during a web request, but wait for the result (which might have, eg, debug info) when I'm running the task interactively?
I know that Tasks have the ignore_result
flag, but I'm wondering specifically if it's possible to set ignore_result
on a per-invocation basis (not a "global" basis).