Casper Zacho Roskær
Casper Zacho Roskær
Was this ever solved, I run the same problem as @safhac , trying to pass the ProgressRecorder from a main_task down to the sub_tasks it spawns, however this do not...
```python @shared_task(bind=True) def main_task(self, seconds): progress_recorder = ProgressRecorder(self) result = 0 for i in range(seconds): time.sleep(1) sub_task(seconds, progress_recorder) result += i progress_recorder.set_progress(i + 1, seconds) return result @shared_task(bind=True) def sub_task(self,...
Interesting, i will look in to this implementation asap :D