Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-12-29 21:10:10 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-12-29 21:10:10 +0300
commit89d84b76a93353a8b614860c3b3bccc71917aeeb (patch)
tree89363b03a4e6f42f2b2ea610f471772b05ce7c8a /app/models/commit.rb
parentf4395ec210a7c5f5ef4069a2a3e51537123c3038 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r--app/models/commit.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb
index 562e9c4710f..6c2a818fc12 100644
--- a/app/models/commit.rb
+++ b/app/models/commit.rb
@@ -80,7 +80,7 @@ class Commit
def diff_hard_limit_files(project: nil)
if Feature.enabled?(:increased_diff_limits, project)
- 2000
+ 3000
else
1000
end
@@ -88,7 +88,7 @@ class Commit
def diff_hard_limit_lines(project: nil)
if Feature.enabled?(:increased_diff_limits, project)
- 75000
+ 100000
else
50000
end