Commit 1d2af74578a8133866b1a19caf0f2003eeaa7096

Authored by Sytse Sijbrandij
2 parents afd29993 2f4d0a30

Merge branch 'rephrase_ldap_check' into 'master'

Rephrase LDAP check script output
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
lib/tasks/gitlab/check.rake
... ... @@ -698,7 +698,7 @@ namespace :gitlab do
698 698 end
699 699  
700 700 def print_users(limit)
701   - puts "LDAP users with access to your GitLab server (limit: #{limit}):"
  701 + puts "LDAP users with access to your GitLab server (only showing the first #{limit} results)"
702 702 ldap.search(attributes: attributes, filter: filter, size: limit, return_result: false) do |entry|
703 703 puts "DN: #{entry.dn}\t#{ldap_config.uid}: #{entry[ldap_config.uid]}"
704 704 end
... ...