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
The following creates a difficult situation to recover from if a key is ever nil:
nil
require 'vayacondios-client' client = Vayacondios::HttpClient.new(host: 'localhost', port: 9000, organization: 'hyrule') client.set!('topic', 'id', { nil => 'accident' }) client.get('topic', 'id') #=> {""=>"thing"} client.set!('topic', 'id.nested', { real: 'value' }) client.get('topic', 'id.nested') #=> nil
Discovered this by accident, and it prevents further nested use of the topic id pair.
The text was updated successfully, but these errors were encountered:
This jira claims to have solved the issue for Mongo 2.1.0, but it still persists with our current install of Mongo version 2.2.1.
Sorry, something went wrong.
No branches or pull requests
The following creates a difficult situation to recover from if a key is ever
nil
:Discovered this by accident, and it prevents further nested use of the topic id pair.
The text was updated successfully, but these errors were encountered: