summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@gitlab.com>2015-03-10 20:04:26 +0000
committerDmitriy Zaporozhets <dzaporozhets@gitlab.com>2015-03-10 20:04:26 +0000
commitf0a132ed992ea74c8a71335e94e300321c30ff09 (patch)
tree8e9a0ef5f3123f4a635ccc7543201c357a5f1eac
parentc572bdb587bada094af867839a60a26a1fc1423e (diff)
parent0d4328fd00617bd23cd91f212e964b86c70792f7 (diff)
downloadgitlab-ce-f0a132ed992ea74c8a71335e94e300321c30ff09.tar.gz
Merge branch 'active-users-check' into 'master'
Active users check For gitlab/gitlab-ee#248 See merge request !1673
-rw-r--r--CHANGELOG1
-rw-r--r--lib/tasks/gitlab/check.rake5
2 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index b1152a40383..b72cfe7284a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -47,6 +47,7 @@ v 7.9.0 (unreleased)
- Fix highliht of selected lines in file
- Reject access to group/project avatar if the user doesn't have access.
- Add database migration to clean group duplicates with same path and name (Make sure you have a backup before update)
+ - Add GitLab active users count to rake gitlab:check
v 7.8.2
- Fix service migration issue when upgrading from versions prior to 7.3
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake
index 43115915de1..976c4b5f22f 100644
--- a/lib/tasks/gitlab/check.rake
+++ b/lib/tasks/gitlab/check.rake
@@ -29,6 +29,7 @@ namespace :gitlab do
check_redis_version
check_ruby_version
check_git_version
+ check_active_users
finished_checking "GitLab"
end
@@ -781,6 +782,10 @@ namespace :gitlab do
end
end
+ def check_active_users
+ puts "Active users: #{User.active.count}"
+ end
+
def omnibus_gitlab?
Dir.pwd == '/opt/gitlab/embedded/service/gitlab-rails'
end