diff --git a/test/pylib/rest_client.py b/test/pylib/rest_client.py index 98d5cca624..fa5ed7d42b 100644 --- a/test/pylib/rest_client.py +++ b/test/pylib/rest_client.py @@ -128,7 +128,7 @@ class UnixRESTClient(RESTClient): def __init__(self, sock_path: str): # NOTE: using Python requests style URI for Unix domain sockets to avoid using "localhost" # host parameter is ignored but set to socket name as convention - self.uri_scheme: str = "http+unix" + self.uri_scheme: str = "http" self.default_host: str = f"{os.path.basename(sock_path)}" self.connector = UnixConnector(path=sock_path)