You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the HTTP2::Header::Decompressor class it has this comment:
# Responsible for decoding received headers and maintaining compression# context of the opposing peer. Decompressor must be initialized with# appropriate starting context based on local role: client or server.## @example# server_role = Decompressor.new(:request)# client_role = Decompressor.new(:response)
Yet the constructor does not take any normal arguments, just an options hash:
In the
HTTP2::Header::Decompressor
class it has this comment:Yet the constructor does not take any normal arguments, just an options hash:
So if you try to initialize it as described, you'll get a
wrong number of arguments
error.The text was updated successfully, but these errors were encountered: