Skip to content

Commit

Permalink
test http
Browse files Browse the repository at this point in the history
  • Loading branch information
kienvc authored Apr 10, 2024
1 parent e04e12c commit 366ed20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hummingbot/core/gateway/gateway_http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 366ed20

Please sign in to comment.