##// END OF EJS Templates
svn: Ignore the content length header from response, fixes #4112...
Martin Bornhold -
r473:7e153d56 default
parent child Browse files
Show More
@@ -30,7 +30,7 b' from rhodecode.lib.utils import is_valid'
30 class SimpleSvnApp(object):
30 class SimpleSvnApp(object):
31 IGNORED_HEADERS = [
31 IGNORED_HEADERS = [
32 'connection', 'keep-alive', 'content-encoding',
32 'connection', 'keep-alive', 'content-encoding',
33 'transfer-encoding']
33 'transfer-encoding', 'content-length']
34
34
35 def __init__(self, config):
35 def __init__(self, config):
36 self.config = config
36 self.config = config
General Comments 0
You need to be logged in to leave comments. Login now