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
diff options
context:
space:
mode:
Diffstat (limited to 'lib/system_check/app/migrations_are_up_check.rb')
-rw-r--r--lib/system_check/app/migrations_are_up_check.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system_check/app/migrations_are_up_check.rb b/lib/system_check/app/migrations_are_up_check.rb
index b12e9ac6bba..e248e03e5e0 100644
--- a/lib/system_check/app/migrations_are_up_check.rb
+++ b/lib/system_check/app/migrations_are_up_check.rb
@@ -6,7 +6,7 @@ module SystemCheck
set_name 'All migrations up?'
def check?
- migration_status, _ = Gitlab::Popen.popen(%w(bundle exec rake db:migrate:status))
+ migration_status, _ = Gitlab::Popen.popen(%w[bundle exec rake db:migrate:status])
migration_status !~ /down\s+\d{14}/
end