summaryrefslogtreecommitdiff
path: root/config/initializers/action_cable.rb
blob: c549dd45ad9a6f7c3bc8678fb42abdb6b46239d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'action_cable/subscription_adapter/redis'

Rails.application.configure do
  # We only mount the ActionCable engine in tests where we run it in-app
  # For other environments, we run it on a standalone Puma server
  config.action_cable.mount_path = Rails.env.test? ? '/-/cable' : nil
  config.action_cable.url = Gitlab::Utils.append_path(Gitlab.config.gitlab.relative_url_root, '/-/cable')
  config.action_cable.worker_pool_size = Gitlab.config.action_cable.worker_pool_size
end

# https://github.com/rails/rails/blob/bb5ac1623e8de08c1b7b62b1368758f0d3bb6379/actioncable/lib/action_cable/subscription_adapter/redis.rb#L18
ActionCable::SubscriptionAdapter::Redis.redis_connector = lambda do |config|
  args = config.except(:adapter, :channel_prefix)
    .merge(instrumentation_class: ::Gitlab::Instrumentation::Redis::ActionCable)

  ::Redis.new(args)
end