summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2016-10-25 01:37:16 -0700
committerStan Hu <stanhu@gmail.com>2016-10-25 06:52:44 -0700
commited47f4a30891529eac2fcc99a344038bf3793cc4 (patch)
treead0d3c76691cead4043adc2aabdae567667bc8a7 /CHANGELOG.md
parentadd3a2c4431f29ca84c956f5604769505f0f0904 (diff)
downloadgitlab-ce-ed47f4a30891529eac2fcc99a344038bf3793cc4.tar.gz
Reduce overhead of LabelFinder by avoiding #presence callsh-optimize-label-finder
Some users experienced 502 timeouts when viewing group labels. Labels#open_issues_count and Label#open_merge_requests_count were taking a long time to load because they were loading every ActiveRecord of the user-accessible projects into memory. This change modifies the system so that #presence and hence to_a isn't called. Closes #23684
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 86878e5af6c..8ae39105ffc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,7 @@ Please view this file on the master branch, on stable branches it's out of date.
- Fix reply-by-email not working due to queue name mismatch
- Fixed hidden pipeline graph on commit and MR page !6895
- Expire and build repository cache after project import
+ - Reduce overhead of LabelFinder by avoiding #presence call !7094
- Fix 404 for group pages when GitLab setup uses relative url
- Simpler arguments passed to named_route on toggle_award_url helper method
- Better handle when no users were selected for adding to group or project. (Linus Thiel)