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
anycable/rails/action_cable_ext/remote_connections.rb:10 in disconnect
IS super() unless AnyCable::Rails.enabled? - super is called w/o arguments
SHOULD BE super unless AnyCable::Rails.enabled? - without brackets, so super is called w/ arguments
The text was updated successfully, but these errors were encountered:
Tell us about your environment
Ruby version: 3.2
Rails version: 7.1.3
anycable
gem version: 1.4.3anycable-rails
gem version: 1.4.3What did you do?
Disconnecting user with no reconnect
ActionCable.server.remote_connections.where(identity: User.find(...)).disconnect(reconnect: false)
What did you expect to happen?
reconnect is transmitted false
What actually happened?
reconnect is transmitted true
Fix
anycable/rails/action_cable_ext/remote_connections.rb:10 in disconnect
IS
super() unless AnyCable::Rails.enabled?
- super is called w/o argumentsSHOULD BE
super unless AnyCable::Rails.enabled?
- without brackets, so super is called w/ argumentsThe text was updated successfully, but these errors were encountered: