diff options
author | Valery Sizov <valery@gitlab.com> | 2018-09-25 16:29:17 +0300 |
---|---|---|
committer | Valery Sizov <valery@gitlab.com> | 2018-09-25 17:49:39 +0300 |
commit | 15d011d64d579616dd9df3e3e5082ed5b99bcdf8 (patch) | |
tree | cb89f3316d037e19ddc5e1b39fdf37955313e103 /lib/tasks | |
parent | cb0f024cd4c4aa51c7824e4e1a6c4d0f307afad1 (diff) | |
download | gitlab-ce-15d011d64d579616dd9df3e3e5082ed5b99bcdf8.tar.gz |
Geo: sync disabled wikis. Stage 2follow-up-geo-sync-disabled-wikis
We started syncing all the wiki regardless of the fact it's disabled or
not. We couldn't do that in one stage because of needing of smoth update
and deprecating things. This is the second stage that finally removes
unused columns in the geo_node_status table.
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/gitlab/site_statistics.rake | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/tasks/gitlab/site_statistics.rake b/lib/tasks/gitlab/site_statistics.rake index 7d24ec72a9d..d97f11b2ed5 100644 --- a/lib/tasks/gitlab/site_statistics.rake +++ b/lib/tasks/gitlab/site_statistics.rake @@ -10,14 +10,6 @@ namespace :gitlab do SiteStatistic.update_all('repositories_count = (SELECT COUNT(*) FROM projects)') end puts 'OK!'.color(:green) - - print '* Wikis... ' - SiteStatistic.transaction do - # see https://gitlab.com/gitlab-org/gitlab-ce/issues/48967 - ActiveRecord::Base.connection.execute('SET LOCAL statement_timeout TO 0') if Gitlab::Database.postgresql? - SiteStatistic.update_all('wikis_count = (SELECT COUNT(*) FROM project_features WHERE wiki_access_level != 0)') - end - puts 'OK!'.color(:green) puts end end |