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
path: root/lib
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2014-01-16 21:40:45 +0400
committerJacob Vosmaer <contact@jacobvosmaer.nl>2014-01-16 21:40:45 +0400
commitaf9a14c49cd0e33090765885eb0fa7abefac84ff (patch)
treecf36287bf611712ed808910cce316d00de1ac26e /lib
parentdba982403b7b894d2096ea61b89a247060eefe57 (diff)
Explain that `limit` only applies to the check
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/gitlab/check.rake2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake
index 20d5f03d6ef..461e70ea44e 100644
--- a/lib/tasks/gitlab/check.rake
+++ b/lib/tasks/gitlab/check.rake
@@ -682,6 +682,8 @@ namespace :gitlab do
namespace :ldap do
task :check, [:limit] => :environment do |t, args|
+ # Only show up to 100 results because LDAP directories can be very big.
+ # This setting only affects the `rake gitlab:check` script.
args.with_defaults(limit: 100)
warn_user_is_not_gitlab
start_checking "LDAP"