diff --git a/config/initializers/actioncable.rb b/config/initializers/actioncable.rb new file mode 100644 index 0000000000000000000000000000000000000000..c4be484aaeab09b5232bf1ee4cadab2adf6dce17 --- /dev/null +++ b/config/initializers/actioncable.rb @@ -0,0 +1,24 @@ +# BigBlueButton open source conferencing system - http://www.bigbluebutton.org/. +# +# Copyright (c) 2022 BigBlueButton Inc. and by respective authors (see below). +# +# This program is free software; you can redistribute it and/or modify it under the +# terms of the GNU Lesser General Public License as published by the Free Software +# Foundation; either version 3.0 of the License, or (at your option) any later +# version. +# +# Greenlight is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License along +# with Greenlight; if not, see <http://www.gnu.org/licenses/>. + +# frozen_string_literal: true + +require 'action_cable/subscription_adapter/redis' + +ActionCable::SubscriptionAdapter::Redis.redis_connector = lambda { |config| + config[:id] = nil + Redis.new(config.except(:adapter, :channel_prefix)) +}