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
Version 5.1.1 What happened Attempting to use this API results in a NameError
acl_entry_api.bulk_update_acl_entries({ service_id: 'service id', acl_id: 'acl-id', bulk_update_acl_entries_request: Fastly::BulkUpdateAclEntriesRequest.new(entries: [Fastly::BulkUpdateAclEntry.new(id: 'entry_id')]) }) NameError: uninitialized constant Fastly::BulkUpdateAclEntry::NEGATED
Workaround: define it in the calling application
Fastly::NEGATED = Module.new unless Fastly.const_defined?(:NEGATED) unless Fastly::NEGATED.const_defined?(:N0) Fastly::NEGATED.const_set(:N0, false) end
The text was updated successfully, but these errors were encountered:
Updating this ticket to mark that an internal ticket exists to track this issue.
Sorry, something went wrong.
No branches or pull requests
Version
5.1.1
What happened
Attempting to use this API results in a NameError
Workaround: define it in the calling application
The text was updated successfully, but these errors were encountered: