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
The async gem was recently updated here causing any requests from this gem to fail with an arguments error
PageTest#test_page_node_requires_url_and_host_name:
ArgumentError: wrong number of arguments (given 0, expected 1)
/Users/christopher/.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/async-2.14.1/lib/async/queue.rb:85:in `signal'
/Users/christopher/.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/neo4j-ruby-driver-4.4.5/ruby/neo4j/driver/internal/handlers/pulln/auto_pull_response_handler.rb:6:in `signal'
Requiring the previous version such as
# Scraping management
gem "async", "2.12.0"
gem "activegraph" # For example, see https://rubygems.org/gems/activegraph/versions for the latest versions
gem "neo4j-ruby-driver"
Fixes this problem, and should either be required in the gemspec file or this should be updated to handle it.
The text was updated successfully, but these errors were encountered:
The async gem was recently updated here causing any requests from this gem to fail with an arguments error
Requiring the previous version such as
Fixes this problem, and should either be required in the gemspec file or this should be updated to handle it.
The text was updated successfully, but these errors were encountered: