提交 1022a167 编写于 作者: S Sean McGivern

Limit push email diff size

Limit push email diff size to 30 files or 150 KB, whichever comes first.
上级 f011b86b
......@@ -48,6 +48,7 @@ v 8.9.0 (unreleased)
- Add `sha` parameter to MR merge API, to ensure only reviewed changes are merged
- Don't allow MRs to be merged when commits were added since the last review / page load
- Add DB index on users.state
- Limit email on push diff size to 30 files / 150 KB
- Add rake task 'gitlab:db:configure' for conditionally seeding or migrating the database
- Changed the Slack build message to use the singular duration if necessary (Aran Koning)
- Fix race condition on merge when build succeeds
......
......@@ -37,7 +37,7 @@ module Gitlab
end
def diffs
@diffs ||= (safe_diff_files(compare.diffs, diff_refs) if compare)
@diffs ||= (safe_diff_files(compare.diffs(max_files: 30), diff_refs) if compare)
end
def diffs_count
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册