diff options
author | Oswaldo Ferreira <oswaldo@gitlab.com> | 2018-04-18 11:24:05 -0300 |
---|---|---|
committer | Oswaldo Ferreira <oswaldo@gitlab.com> | 2018-04-24 17:29:44 -0300 |
commit | 132f7d33a92d69b163ed5c8a8d8dfd394da12a26 (patch) | |
tree | 4f68819700e0659798a0823a9259eeddb8f35ef3 /lib/gitlab.rb | |
parent | 87cdd43b5dff255a8e1bccb23bcc90ddb9156f61 (diff) | |
download | gitlab-ce-132f7d33a92d69b163ed5c8a8d8dfd394da12a26.tar.gz |
Backport dev env check for storage settings deprecation
Diffstat (limited to 'lib/gitlab.rb')
-rw-r--r-- | lib/gitlab.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab.rb b/lib/gitlab.rb index 0a167104bf4..a759aa7da88 100644 --- a/lib/gitlab.rb +++ b/lib/gitlab.rb @@ -30,6 +30,6 @@ module Gitlab end def self.dev_env_or_com? - Rails.env.test? || Rails.env.development? || org? || com? + Rails.env.development? || org? || com? end end |