You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Bunny raises
RuntimeError: can't modify frozen Array
when given a frozen array of hosts. The cause of this error is the call tomap!
inlib/bunny/session.rb
. The fact that Bunny is modifying its arguments was (at least to me) unexpected behaviour.Is there is any reason for using
map!
instead ofmap
here (apart from the minimal performance gain 😄 )?The text was updated successfully, but these errors were encountered: