[Inteproxy-commits] r328 - in branches/streaming: . inteproxy
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Mon Jan 2 10:34:52 CET 2012
Author: teichmann
Date: 2012-01-02 10:34:52 +0100 (Mon, 02 Jan 2012)
New Revision: 328
Modified:
branches/streaming/ChangeLog
branches/streaming/inteproxy/proxycore.py
Log:
proxycore.py(wrap_read_write_debug) forget self
Modified: branches/streaming/ChangeLog
===================================================================
--- branches/streaming/ChangeLog 2011-12-25 17:32:10 UTC (rev 327)
+++ branches/streaming/ChangeLog 2012-01-02 09:34:52 UTC (rev 328)
@@ -1,3 +1,7 @@
+2012-01-02 Sascha L. Teichmann <sascha.teichmann at intevation.de>
+
+ * inteproxy/proxycore.py(wrap_read_write_debug): Forgot self.
+
2011-12-25 Sascha L. Teichmann <sascha.teichmann at intevation.de>
* inteproxy/proxycore.py: Call the new rewrite/chunking code
Modified: branches/streaming/inteproxy/proxycore.py
===================================================================
--- branches/streaming/inteproxy/proxycore.py 2011-12-25 17:32:10 UTC (rev 327)
+++ branches/streaming/inteproxy/proxycore.py 2012-01-02 09:34:52 UTC (rev 328)
@@ -333,7 +333,7 @@
rewrite = transcoder_map.url_rewriter(prefix, self.log_debug)
self.transfer_chunked_rewrite(rewrite, response.read, self.wfile.write)
- def wrap_read_write_debug(read, write):
+ def wrap_read_write_debug(self, read, write):
# wrap the read/write functions if debug logging is active so
# that the data read from the server and written to the client
# is logged.
More information about the Inteproxy-commits
mailing list