Merge pull request #257 from itaru2622/fix_proxy_auth_typo

fix typo in proxy auth (stream/ws_client.py)
This commit is contained in:
Kubernetes Prow Robot 2021-10-10 18:54:37 -07:00 committed by GitHub
commit 5756b94e4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -450,7 +450,7 @@ def create_websocket(configuration, url, headers=None):
'header': header
}
if configuration.proxy or coniguration.proxy_headers:
if configuration.proxy or configuration.proxy_headers:
connect_opt = websocket_proxycare(connect_opt, configuration, url, headers)
websocket.connect(url, **connect_opt)