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
/grape-reload-ad29dd32ab27/lib/grape/reload/dependency_map.rb:96:in `[]': no implicit conversion of Symbol into Integer (TypeError)
Got above error whilst starting rack app and a file containing
def dummy_devices_learn hash_to_be_inserted = {:actions => ["learn"]} dummy_devices.map { |key, value| [key, value.merge hash_to_be_inserted] }.to_h end
this seems to resolve the issue
def dummy_devices_learn hash_to_be_inserted = {:actions => ["learn"]} dummy_devices.map { |key, value| [key, value.merge(hash_to_be_inserted)] }.to_h end
Be aware of the brackets around hash_to_be_inserted
hash_to_be_inserted
The text was updated successfully, but these errors were encountered:
No branches or pull requests
/grape-reload-ad29dd32ab27/lib/grape/reload/dependency_map.rb:96:in `[]': no implicit conversion of Symbol into Integer (TypeError)
Got above error whilst starting rack app and a file containing
this seems to resolve the issue
Be aware of the brackets around
hash_to_be_inserted
The text was updated successfully, but these errors were encountered: