Commit db16f859 authored by Heinrich Lee Yu's avatar Heinrich Lee Yu

Merge branch 'jl-lower-milestone-issue-display-limit' into 'master'

Reduce Milestoneish::DISPLAY_ISSUES_LIMIT to 500

See merge request gitlab-org/gitlab!58168
parents 286c45ac 1c687bf3
# frozen_string_literal: true
module Milestoneish
DISPLAY_ISSUES_LIMIT = 3000
DISPLAY_ISSUES_LIMIT = 500
def total_issues_count
@total_issues_count ||= Milestones::IssuesCountService.new(self).count
......
---
title: Reduce milestone issue list display limit to 500
merge_request: 58168
author:
type: performance
......@@ -145,13 +145,14 @@ limited to 1KiB, and descriptions (the rest of the message) will be limited to
## Number of issues in the milestone overview
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/39453) in GitLab 12.10.
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/39453) in GitLab 12.10.
> - [Set](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58168) to 500 in GitLab 13.11.
The maximum number of issues loaded on the milestone overview page is 3000.
The maximum number of issues loaded on the milestone overview page is 500.
When the number exceeds the limit the page displays an alert and links to a paginated
[issue list](../user/project/issues/managing_issues.md) of all issues in the milestone.
- **Limit:** 3000 issues
- **Limit:** 500 issues
## Number of pipelines per Git push
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment