Welcome to mirror list, hosted at ThFree Co, Russian Federation.

check_forced_decomposition.rb « initializers « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7da2f047ca16e7ace7a19f473b83141a46be73eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

return if Gitlab::Utils.to_boolean(ENV.fetch('GITLAB_ALLOW_SEPARATE_CI_DATABASE', false))

# GitLab.com is already decomposed
return if Gitlab.com?

# It is relatively safe for development, and GDK defaults to decomposed already
return if Gitlab.dev_or_test_env?

ci_config = ActiveRecord::Base.configurations.configs_for(env_name: Rails.env, name: 'ci')
main_config = ActiveRecord::Base.configurations.configs_for(env_name: Rails.env, name: 'main')

return unless ci_config

# If the ci `database` is the same as main `database`, it is likely the same
return if ci_config.database == main_config.database &&
  ci_config.host == main_config.host

raise "Separate CI database is not ready for production use!\n\n" \
      "Did you mean to use `database: #{main_config.database}` for the `ci:` database connection?\n" \
      "Or, use `export GITLAB_ALLOW_SEPARATE_CI_DATABASE=1` to ignore this check."