1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

little error fix

This commit is contained in:
Shim Tw 2014-08-25 18:13:04 +09:00
parent b018dfa567
commit c876789420

View file

@ -202,7 +202,7 @@ Other modes for parallelism include:
{% highlight ruby %}
# Capistrano 3.0.x
on :all, in: :groups, max: 3, wait: 5 do
on :all, in: :groups, limit: 3, wait: 5 do
# Take all servers, in groups of three which execute in parallel
# wait five seconds between groups of servers.
# This is perfect for rolling restarts