提交 090aefdc 编写于 作者: R Robert Speicher

Merge branch '28202_decrease_abc_threshold_step5' into 'master'

Decrease ABC threshold to 54.28

See merge request gitlab-org/gitlab-ce!14920
...@@ -624,7 +624,7 @@ Style/PredicateName: ...@@ -624,7 +624,7 @@ Style/PredicateName:
# branches, and conditions. # branches, and conditions.
Metrics/AbcSize: Metrics/AbcSize:
Enabled: true Enabled: true
Max: 55.25 Max: 54.28
# This cop checks if the length of a block exceeds some maximum value. # This cop checks if the length of a block exceeds some maximum value.
Metrics/BlockLength: Metrics/BlockLength:
......
---
title: Decrease ABC threshold to 54.28
merge_request: 14920
author: Maxim Rydkin
type: other
...@@ -137,10 +137,12 @@ module Backup ...@@ -137,10 +137,12 @@ module Backup
# restoring mismatching backups can lead to unexpected problems # restoring mismatching backups can lead to unexpected problems
if settings[:gitlab_version] != Gitlab::VERSION if settings[:gitlab_version] != Gitlab::VERSION
$progress.puts 'GitLab version mismatch:'.color(:red) $progress.puts(<<~HEREDOC.color(:red))
$progress.puts " Your current GitLab version (#{Gitlab::VERSION}) differs from the GitLab version in the backup!".color(:red) GitLab version mismatch:
$progress.puts ' Please switch to the following version and try again:'.color(:red) Your current GitLab version (#{Gitlab::VERSION}) differs from the GitLab version in the backup!
$progress.puts " version: #{settings[:gitlab_version]}".color(:red) Please switch to the following version and try again:
version: #{settings[:gitlab_version]}
HEREDOC
$progress.puts $progress.puts
$progress.puts "Hint: git checkout v#{settings[:gitlab_version]}" $progress.puts "Hint: git checkout v#{settings[:gitlab_version]}"
exit 1 exit 1
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册