[pypy-commit] buildbot default: limit the number of diff lines to 2000

antocuni noreply at buildbot.pypy.org
Fri Sep 21 11:52:52 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
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)


More information about the pypy-commit mailing list