lib/async/http/body/slowloris.rb in async-http-0.52.3 vs lib/async/http/body/slowloris.rb in async-http-0.52.4
- old
+ new
@@ -35,11 +35,11 @@
end
end
# In order for this implementation to work correctly, you need to use a LimitedQueue.
# @param minimum_throughput [Integer] the minimum bytes per second otherwise this body will be forcefully closed.
- def initialize(*args, minimum_throughput: 1024, **options)
- super(*args, **options)
+ def initialize(*arguments, minimum_throughput: 1024, **options)
+ super(*arguments, **options)
@minimum_throughput = minimum_throughput
@last_write_at = nil
@last_chunk_size = nil