mirror of
https://github.com/esphome/esphome.git
synced 2024-11-04 09:01:53 +01:00
Proxy friendly host url resolution for use_address
with path. (#3653)
This commit is contained in:
parent
3c2766448d
commit
edff9ae322
@ -6,6 +6,7 @@ import os
|
||||
from pathlib import Path
|
||||
from typing import Union
|
||||
import tempfile
|
||||
from urllib.parse import urlparse
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
@ -134,7 +135,8 @@ def resolve_ip_address(host):
|
||||
errs.append(str(err))
|
||||
|
||||
try:
|
||||
return socket.gethostbyname(host)
|
||||
host_url = host if (urlparse(host).scheme != "") else "http://" + host
|
||||
return socket.gethostbyname(urlparse(host_url).hostname)
|
||||
except OSError as err:
|
||||
errs.append(str(err))
|
||||
raise EsphomeError(f"Error resolving IP address: {', '.join(errs)}") from err
|
||||
|
Loading…
Reference in New Issue
Block a user