Remove verify_ssl=False from async_get_clientsession calls

ecowitt_support
SchiZzA 2026-02-06 18:14:02 +01:00
parent 0c67b8d2ab
commit f608ab4991
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ class PocasiPush:
_data["PASSWORD"] = _api_key
request_url = f"{POCASI_CZ_URL}{DEFAULT_URL}"
session = async_get_clientsession(self.hass, verify_ssl=False)
session = async_get_clientsession(self.hass)
_LOGGER.debug(
"Payload for Pocasi Meteo server: [mode=%s] [request_url=%s] = %s",
mode,

View File

@ -165,7 +165,7 @@ class WindyPush:
if self.log:
_LOGGER.info("Dataset for windy: %s", purged_data)
session = async_get_clientsession(self.hass, verify_ssl=False)
session = async_get_clientsession(self.hass)
try:
async with session.get(
request_url, params=purged_data, headers=headers