summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/SSLServer.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-09-03 08:55:55 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-09-03 08:56:57 -0400
commitc21167209f26a62fc509a4f5798cb9e2acb15405 (patch)
tree03f7b6ae9e7afc08124fbb75df8ef0ad428df672 /src/lib/Bcfg2/Server/SSLServer.py
parentcafe4709bf56f45c9d9e99fda545270c3f858b6f (diff)
downloadbcfg2-c21167209f26a62fc509a4f5798cb9e2acb15405.tar.gz
bcfg2-c21167209f26a62fc509a4f5798cb9e2acb15405.tar.bz2
bcfg2-c21167209f26a62fc509a4f5798cb9e2acb15405.zip
SSLServer: Don't decode request content
This only exists in py2.7+, and only to expand gzipped request content, which the Bcfg2 client doesn't support (and, given the py2.7 requirement, won't any time soon).
Diffstat (limited to 'src/lib/Bcfg2/Server/SSLServer.py')
-rw-r--r--src/lib/Bcfg2/Server/SSLServer.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/SSLServer.py b/src/lib/Bcfg2/Server/SSLServer.py
index 80a819031..6a3948f40 100644
--- a/src/lib/Bcfg2/Server/SSLServer.py
+++ b/src/lib/Bcfg2/Server/SSLServer.py
@@ -249,7 +249,6 @@ class XMLRPCRequestHandler(SimpleXMLRPCServer.SimpleXMLRPCRequestHandler):
L.append(chunk)
size_remaining -= len(L[-1])
data = ''.join(L)
- data = self.decode_request_content(data)
if data is None:
return # response has been sent