[ZCM] [ZC] 2186/ 2 Reject "Improve ZServer's handling of serving large strings"
"Collector: Zope Bugs, Features, and Patches ..." <[email protected]>
| Newsgroups | gmane.comp.web.zope.devel.collector-monitor |
|---|---|
| Message-ID | <[email protected]> |
Issue #2186 Update (Reject) "Improve ZServer's handling of serving large strings"
Status Rejected, Zope/feature medium
To followup, visit:
http://www.zope.org/Collectors/Zope/2186
==============================================================
= Reject - Entry #2 by ajung on Jan 13, 2007 10:28 am
Status: Pending => Rejected
This patch no longer applies to the current codebase and it is unclear what the problem is.
________________________________________
= Request - Entry #1 by teyc on Sep 8, 2006 6:59 am
$ diff -c HTTPServer.py.ZopeVendor HTTPServer.py.ZopePatch27
*** HTTPServer.py.ZopeVendor Thu Sep 7 16:49:08 2006
--- HTTPServer.py.ZopePatch27 Thu Sep 7 16:48:50 2006
***************
*** 303,309 ****
# producers by default
if self.closed:
return
! self.producer_fifo.push(producer)
if send: self.initiate_send()
push_with_producer=push
--- 306,315 ----
# producers by default
if self.closed:
return
! if type(producer) == type(''):
! self.producer_fifo.push (producers.scanning_producer (producer, self.ac_out_buffer_size))
! else:
! self.producer_fifo.push (producer)
if send: self.initiate_send()
==============================================================