Closed duylong closed 8 years ago
Hi,
We can not use this case:
throttle { after_count => 5 before_count => 6 ... }
When "before_count" greater than "after_count", "after_count" is never considered.
That is an invalid range. Works as designed.
Invalid range:
puts (5..6).to_a
Result:
(nothing returned)
Good range:
5 6
Hi,
We can not use this case:
When "before_count" greater than "after_count", "after_count" is never considered.