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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorKamil Trzciński <ayufan@ayufan.eu>2019-07-01 18:29:49 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2019-07-01 18:29:49 +0300
commit59963779362b00723d79ae6190689ad0fccf729e (patch)
treeae6bc14e665dd0932285492f52ceb25011a77f2d /config
parent77212dd5eccc0ef154c088f9bafb4bede4acc86f (diff)
parentf44719f39cb9ee88c63759caa582d484cd6d4e9a (diff)
Merge branch '62722-boot-app-in-ci-and-check-memory-ce' into 'master'
Get memory data after booting app in production Closes #62722 See merge request gitlab-org/gitlab-ce!30185
Diffstat (limited to 'config')
-rw-r--r--config/boot.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/boot.rb b/config/boot.rb
index 2811f0e6188..b76b26a5e75 100644
--- a/config/boot.rb
+++ b/config/boot.rb
@@ -3,7 +3,7 @@ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
# Set up gems listed in the Gemfile.
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
begin
- require 'bootsnap/setup'
+ require 'bootsnap/setup' unless ENV['DISABLE_BOOTSNAP']
rescue LoadError
# bootsnap is an optional dependency, so if we don't have it, it's fine
end