~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http.py

Merged latest from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
261
261
            if not combined_offsets:
262
262
                combined_offsets = [[offset, size]]
263
263
            else:
264
 
                if (len (combined_offsets) < 50 and
 
264
                if (len (combined_offsets) < 500 and
265
265
                    combined_offsets[-1][0] + combined_offsets[-1][1] == offset):
266
266
                    # combatible offset:
267
267
                    combined_offsets.append([offset, size])