Author: Antonio Cuni <[email protected]>
Branch: 
Changeset: r702:8dfcd6516e81
Date: 2012-09-21 11:52 +0200
http://bitbucket.org/pypy/buildbot/changeset/8dfcd6516e81/

Log:    limit the number of diff lines to 2000

diff --git a/bbhook/scm.py b/bbhook/scm.py
--- a/bbhook/scm.py
+++ b/bbhook/scm.py
@@ -1,7 +1,7 @@
 import sys
 from subprocess import Popen, PIPE
 
-MAX_DIFF_LINES = 10000
+MAX_DIFF_LINES = 2000
 
 def _hgexe(argv):
     proc = Popen(['hg'] + list(argv), stdout=PIPE, stderr=PIPE)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to