Skip to content
Snippets Groups Projects
Commit 83593ea7 authored by Ximin Luo's avatar Ximin Luo
Browse files

Increase default max_diff_input_lines, should be OK based on what we've seen

parent 07afe576
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ class classproperty(property):
class Config(object):
def __init__(self):
self._max_diff_block_lines = 50
self._max_diff_input_lines = 100000 # GNU diff cannot process arbitrary large files :(
self._max_diff_input_lines = 2 ** 20 # GNU diff cannot process arbitrary large files :(
self._max_report_size = 2000 * 2 ** 10 # 2000 kB
self._separate_file_diff_size = 200 * 2 ** 10 # 200kB
self._fuzzy_threshold = 60
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment