Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for chrome breaking changes #15

Open
Muscul opened this issue Nov 29, 2023 · 0 comments
Open

Fix for chrome breaking changes #15

Muscul opened this issue Nov 29, 2023 · 0 comments

Comments

@Muscul
Copy link

Muscul commented Nov 29, 2023

Please update your gem with changes. It need to replace GET request to PUT

  response = Net::HTTP.get(options[:host], path, options[:port])
  response = JSON.parse(response)

replace to this

  http = Net::HTTP.new(options[:host], options[:port])
  resp = http.send_request('PUT', path)      
  response = JSON.parse(resp.body)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant