瀏覽代碼

[knox] Disabled the MultipleProxyMiddleware for py2 (#3021)

The middleware is needed only on py3 and is interfering when
authenticating with knox. We are stripping out the gateway host's
header information and that is why it is failing the match
with proxy_hosts config.
Amit S 3 年之前
父節點
當前提交
f4d0ebcbe0
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      desktop/core/src/desktop/settings.py

+ 2 - 0
desktop/core/src/desktop/settings.py

@@ -803,6 +803,8 @@ MODULES_TO_PATCH = (
 
 if sys.version_info[0] > 2:
   MIDDLEWARE.append('axes.middleware.AxesMiddleware')  # AxesMiddleware should be the last middleware in the MIDDLEWARE list.
+else:
+  MIDDLEWARE.remove('desktop.middleware.MultipleProxyMiddleware')
 
 try:
   import hashlib