From d802b4633629c4e0948ea60172cf9540b7b1e39f Mon Sep 17 00:00:00 2001 From: Jens Bartsch Date: Tue, 11 Jun 2024 16:14:40 +0200 Subject: [PATCH] switch default proxy type to "http" --- src/hiro_graph_client/VERSION | 2 +- src/hiro_graph_client/websocketlib.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hiro_graph_client/VERSION b/src/hiro_graph_client/VERSION index e230c83..7d3cdbf 100644 --- a/src/hiro_graph_client/VERSION +++ b/src/hiro_graph_client/VERSION @@ -1 +1 @@ -5.3.0 \ No newline at end of file +5.3.1 \ No newline at end of file diff --git a/src/hiro_graph_client/websocketlib.py b/src/hiro_graph_client/websocketlib.py index 423da63..b0188a4 100644 --- a/src/hiro_graph_client/websocketlib.py +++ b/src/hiro_graph_client/websocketlib.py @@ -433,6 +433,7 @@ def run_forever(self): self._ws.run_forever(http_proxy_host=self._proxy_hostname, http_proxy_port=self._proxy_port, http_proxy_auth=self._proxy_auth, + proxy_type='http', sslopt={ "cert_reqs": ssl.CERT_NONE } if not self._api_handler.ssl_config.verify else None)