We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 858e312 + e975a1c commit 8b1399cCopy full SHA for 8b1399c
docs/userguide/canvas.rst
@@ -911,11 +911,11 @@ while calling ``.apply_async`` will create a dedicated
911
task so that the individual tasks are applied in a worker
912
instead::
913
914
- >>> add.chunks(zip(range(100), range(100), 10)).apply_async()
+ >>> add.chunks(zip(range(100), range(100)), 10).apply_async()
915
916
You can also convert chunks to a group::
917
918
- >>> group = add.chunks(zip(range(100), range(100), 10)).group()
+ >>> group = add.chunks(zip(range(100), range(100)), 10).group()
919
920
and with the group skew the countdown of each task by increments
921
of one::
0 commit comments