Skip to content
New issue

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

Bunny.new raises RuntimeError when given frozen array of hosts #446

Closed
roback opened this issue Nov 16, 2016 · 0 comments
Closed

Bunny.new raises RuntimeError when given frozen array of hosts #446

roback opened this issue Nov 16, 2016 · 0 comments
Assignees

Comments

@roback
Copy link

roback commented Nov 16, 2016

Bunny raises RuntimeError: can't modify frozen Array when given a frozen array of hosts. The cause of this error is the call to map! in lib/bunny/session.rb. The fact that Bunny is modifying its arguments was (at least to me) unexpected behaviour.

require "bunny"

Bunny::VERSION
# => "2.6.1"

HOSTS = [
  "localhost",
].freeze

Bunny.new(hosts: HOSTS)
# => RuntimeError: can't modify frozen Array
#    from ~/.gem/ruby/2.3.1/gems/bunny-2.6.1/lib/bunny/session.rb:774:in `map!'

Is there is any reason for using map! instead of map here (apart from the minimal performance gain 😄 )?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants