summaryrefslogtreecommitdiff
path: root/rubocop
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-06 21:08:47 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-06 21:08:47 +0000
commitd650b4f4c4a20f9d1801a0dc69bdc3e106a18e11 (patch)
treeafb5832443981e94d49962d84631d3d2480aa66f /rubocop
parent9213b5a0fd66f3b466047bf85f90ad056c239f18 (diff)
downloadgitlab-ce-d650b4f4c4a20f9d1801a0dc69bdc3e106a18e11.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'rubocop')
-rw-r--r--rubocop/cop/background_migration/feature_category.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/rubocop/cop/background_migration/feature_category.rb b/rubocop/cop/background_migration/feature_category.rb
index 2c96e5f29de..ec70b5baadf 100644
--- a/rubocop/cop/background_migration/feature_category.rb
+++ b/rubocop/cop/background_migration/feature_category.rb
@@ -12,12 +12,12 @@ module RuboCop
FEATURE_CATEGORIES_FILE_PATH = "config/feature_categories.yml"
- MSG = "'feature_category' should be defined to better assign the ownership for batched migration jobs. "\
- "For more details refer: "\
- "https://docs.gitlab.com/ee/development/feature_categorization/#batched-background-migrations"
+ MSG = "'feature_category' should be defined to better assign the ownership for batched migration jobs. " \
+ "For more details refer: " \
+ "https://docs.gitlab.com/ee/development/feature_categorization/#batched-background-migrations"
- INVALID_FEATURE_CATEGORY_MSG = "'feature_category' is invalid. "\
- "List of valid ones can be found in #{FEATURE_CATEGORIES_FILE_PATH}"
+ INVALID_FEATURE_CATEGORY_MSG = "'feature_category' is invalid. " \
+ "List of valid ones can be found in #{FEATURE_CATEGORIES_FILE_PATH}"
RESTRICT_ON_SEND = [:feature_category].freeze