瀏覽代碼

Fix hang on Gzip decompression

'LimitedInputFilter' should be applied before the Gzip middleware as
'CONTENT_LENGTH' refers to the size of the *compressed* body.  If
applied in wrong order, this may cause 'copyfileobj()' to try to read
more data from the socket than is available, resulting in a call to
'recv()' that hangs forever.
Jonas Haag 9 年之前
父節點
當前提交
6ba8bba4f4
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      dulwich/web.py

+ 1 - 1
dulwich/web.py

@@ -415,7 +415,7 @@ def make_wsgi_chain(*args, **kwargs):
     correctly wrapped with needed middleware.
     """
     app = HTTPGitApplication(*args, **kwargs)
-    wrapped_app = GunzipFilter(LimitedInputFilter(app))
+    wrapped_app = LimitedInputFilter(GunzipFilter(app))
     return wrapped_app