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
I'm getting
[NoMethodError]: undefined method `empty?' for nil:NilClass /opt/rh/cfme-gemset/gems/fog-google-0.5.2/lib/fog/google/requests/pubsub/create_subscription.rb:29:in `create_subscription' /opt/rh/cfme-gemset/gems/fog-google-0.5.2/lib/fog/google/models/pubsub/subscription.rb:71:in `save' /opt/rh/cfme-gemset/gems/fog-core-1.43.0/lib/fog/core/collection.rb:51:in `create'
The calling code is
google.subscriptions.create(:name => subscription_name, :topic => topic_name)
My guess is either #168 introduced this regression because this line passes push_config and if it's nil it will pass nil.
push_config
nil
Adding push_config => {} to the caller fixes the issue.
push_config => {}
The text was updated successfully, but these errors were encountered:
add empty config - workaround for fog/fog-google#214
a117e8a
45e4daf
(transferred from ManageIQ/manageiq@a117e8a)
ca3b244
Successfully merging a pull request may close this issue.
I'm getting
The calling code is
My guess is either #168 introduced this regression because this line passes
push_config
and if it'snil
it will passnil
.Adding
push_config => {}
to the caller fixes the issue.The text was updated successfully, but these errors were encountered: