lib/async/http/protocol/http2/client.rb in async-http-0.35.1 vs lib/async/http/protocol/http2/client.rb in async-http-0.36.0
- old
+ new
@@ -28,15 +28,15 @@
module Protocol
module HTTP2
class Client < ::HTTP::Protocol::HTTP2::Client
include Connection
- def initialize(stream, *args)
+ def initialize(stream)
@stream = stream
framer = ::HTTP::Protocol::HTTP2::Framer.new(@stream)
- super(framer, *args)
+ super(framer)
end
# Used by the client to send requests to the remote server.
def call(request)
@count += 1