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
Hi! There is an issue with Ruby >= 2.6 with a recent Webrick version. Webrick public API was changed and now it requires more arguments.
Check the do_PUT / do_DELETE / do_PATCH / etc methods that calls perform_proxy_request(req, res) under the hood. But in a new Webrick it requires 3..4 arguments to be passed:
Hi! There is an issue with Ruby >= 2.6 with a recent Webrick version. Webrick public API was changed and now it requires more arguments.
Check the
do_PUT
/do_DELETE
/do_PATCH
/ etc methods that callsperform_proxy_request(req, res)
under the hood. But in a new Webrick it requires 3..4 arguments to be passed:https://github.com/ruby/webrick/blob/master/lib/webrick/httpproxy.rb#L298
So we catch
wrong number of arguments (given 2, expected 3..4)
exception.The text was updated successfully, but these errors were encountered: