Skip to content
Snippets Groups Projects
Commit 9530780a authored by Siddharth Asthana's avatar Siddharth Asthana :bow:
Browse files

Fix Rake/Require offense


Changelog: other

Signed-off-by: Siddharth Asthana's avatarSiddharth Asthana <siddharthasthana31@gmail.com>
parent b28cf373
No related branches found
No related tags found
No related merge requests found
Pipeline #806309584 passed
......@@ -3,6 +3,5 @@ Rake/Require:
Details: grace period
Exclude:
- 'lib/tasks/gitlab/packages/events.rake'
- 'lib/tasks/gitlab/refresh_project_statistics_build_artifacts_size.rake'
- 'lib/tasks/tokens.rake'
- 'qa/tasks/webdrivers.rake'
# frozen_string_literal: true
require 'httparty'
require 'csv'
namespace :gitlab do
desc "GitLab | Refresh build artifacts size project statistics for given list of Project IDs from remote CSV"
BUILD_ARTIFACTS_SIZE_REFRESH_ENQUEUE_BATCH_SIZE = 500
task :refresh_project_statistics_build_artifacts_size, [:csv_url] => :environment do |_t, args|
require 'httparty'
require 'csv'
csv_url = args.csv_url
# rubocop: disable Gitlab/HTTParty
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment