diff --git a/doc/administration/raketasks/check.md b/doc/administration/raketasks/check.md index 7e452ae503df9467f1ebb636f7713836f2a46221..94d71e32ef97d8f703f1aa59b9ba9986d10e0c62 100644 --- a/doc/administration/raketasks/check.md +++ b/doc/administration/raketasks/check.md @@ -79,10 +79,10 @@ Example output: ## Uploaded Files Integrity The uploads check Rake task will loop through all uploads in the database -and runs two checks to determine the integrity of each file: +and run two checks to determine the integrity of each file: -1. Check if the file exist in the file system. -1. Check if the checksum of the file in the file system matches the checksum in the database. +1. Check if the file exist on the file system. +1. Check if the checksum of the file on the file system matches the checksum in the database. **Omnibus Installation** diff --git a/lib/tasks/gitlab/uploads.rake b/lib/tasks/gitlab/uploads.rake index fd5ef78103b86353bc1cd560b1e0058c32d6ed73..df31567ce648f1ec1249edc1d1ae67b0027d4b45 100644 --- a/lib/tasks/gitlab/uploads.rake +++ b/lib/tasks/gitlab/uploads.rake @@ -2,7 +2,7 @@ namespace :gitlab do namespace :uploads do desc 'GitLab | Uploads | Check integrity of uploaded files' task check: :environment do - puts 'Starting checking integrity of uploaded files' + puts 'Checking integrity of uploaded files' uploads_batches do |batch| batch.each do |upload|