summaryrefslogtreecommitdiff
path: root/lib/gitlab/database/load_balancing/active_record_proxy.rb
blob: deaea62d774170aac3e59f043c937f16d9cbd90d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Gitlab
  module Database
    module LoadBalancing
      # Module injected into ActiveRecord::Base to allow hijacking of the
      # "connection" method.
      module ActiveRecordProxy
        def connection
          ::Gitlab::Database::LoadBalancing.proxy
        end
      end
    end
  end
end