Skip to content

Commit

Permalink
Stop using shared aiohttp client session for Subaru integration (#133931
Browse files Browse the repository at this point in the history
)
  • Loading branch information
G-Two authored and frenck committed Dec 24, 2024
1 parent f23bc51 commit 4f1e9b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/subaru/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Set up Subaru from a config entry."""
config = entry.data
websession = aiohttp_client.async_get_clientsession(hass)
websession = aiohttp_client.async_create_clientsession(hass)
try:
controller = SubaruAPI(
websession,
Expand Down

0 comments on commit 4f1e9b2

Please sign in to comment.