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
When trying to import with parameters i get ArgumentError: wrong number of arguments (given 1, expected 0)
data.import(**import_options) do |response| ... end
import_options is a hash obviously. Same error when calling import like data.import(batch_size:500) do |response|
data.import(batch_size:500) do |response|
The text was updated successfully, but these errors were encountered:
Same happens on ruby2.7, except it is a warning there not an error. Still annoying, though.
Sorry, something went wrong.
I guess this would fixed by #1016. However the CI doesn't pass, nor the author signed the requested agreement. Any chance those issues get addressed?
seems to be fixed by this, but it is not included in the latest release (since it's merged after that).
@tiendo1011 thanks, I didn't note that, so this can be closed
No branches or pull requests
When trying to import with parameters i get ArgumentError: wrong number of arguments (given 1, expected 0)
import_options is a hash obviously. Same error when calling import like
data.import(batch_size:500) do |response|
The text was updated successfully, but these errors were encountered: