1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

All, not any

This commit is contained in:
Mike Perham 2015-03-02 14:45:05 -08:00
parent 809c6ce810
commit 2f71d53877

View file

@ -38,7 +38,7 @@ a.jobs do
end
```
Parent batch callbacks are not processed until any child batch callbacks have
Parent batch callbacks are not processed until all child batch callbacks have
run successfully. In the example above, `MyCallback` will always fire
before `SomeCallback` because `b` is considered a child of `a`.