We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From @javierg in testing something else
+++ b/lib/dolly/request.rb @@ -19,7 +19,7 @@ module Dolly @password = options["password"] @protocol = options["protocol"] - @bulk_document = Dolly::BulkDocument.new [] + @bulk_document = Dolly::BulkDocument.new self, [] self.class.base_uri "#{protocol}://#{host}:#{port}" end
The text was updated successfully, but these errors were encountered:
BulkDocument initializer expects first argument to be the current database connection
BulkDocument
Sorry, something went wrong.
The signature used in Request initalizing the BulkDocument instance is wrong.
Request
No branches or pull requests
From @javierg in testing something else
The text was updated successfully, but these errors were encountered: