Cleanup not needed websocket flags for ingress (#28295)

pull/28354/head
Pascal Vizeli 2019-10-29 12:05:05 +01:00 committed by Paulus Schoutsen
parent 070790ccc9
commit f021e5832a
1 changed files with 8 additions and 1 deletions

View File

@ -167,7 +167,14 @@ def _init_header(
# filter flags
for name, value in request.headers.items():
if name in (hdrs.CONTENT_LENGTH, hdrs.CONTENT_ENCODING):
if name in (
hdrs.CONTENT_LENGTH,
hdrs.CONTENT_ENCODING,
hdrs.SEC_WEBSOCKET_EXTENSIONS,
hdrs.SEC_WEBSOCKET_PROTOCOL,
hdrs.SEC_WEBSOCKET_VERSION,
hdrs.SEC_WEBSOCKET_KEY,
):
continue
headers[name] = value