From 366ed20f5b6aa886100d492b445f90a6d8e61c8a Mon Sep 17 00:00:00 2001 From: kienvc Date: Wed, 10 Apr 2024 13:39:31 +0700 Subject: [PATCH] test http --- hummingbot/core/gateway/gateway_http_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hummingbot/core/gateway/gateway_http_client.py b/hummingbot/core/gateway/gateway_http_client.py index b8ba3791e6..e207f59879 100644 --- a/hummingbot/core/gateway/gateway_http_client.py +++ b/hummingbot/core/gateway/gateway_http_client.py @@ -62,7 +62,7 @@ def __init__(self, client_config_map: Optional["ClientConfigAdapter"] = None): api_host = client_config_map.gateway.gateway_api_host api_port = client_config_map.gateway.gateway_api_port if GatewayHttpClient.__instance is None: - self._base_url = f"https://{api_host}:{api_port}" + self._base_url = f"http://{api_host}:{api_port}" self._client_config_map = client_config_map GatewayHttpClient.__instance = self