Skip to content

Commit

Permalink
Merge pull request #48 from ProudElm/47-minor-change-timeout-from-60-…
Browse files Browse the repository at this point in the history
…to-300-for-large-panel-installs

Update sensor.py
  • Loading branch information
ProudElm authored Apr 24, 2023
2 parents 585f0b4 + 60826ab commit 365539f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/solaredgeoptimizers/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ async def _async_update_data(self):
try:
# Note: asyncio.TimeoutError and aiohttp.ClientError are already
# handled by the data update coordinator.
async with async_timeout.timeout(60):
async with async_timeout.timeout(300):
_LOGGER.debug("Update from the coordinator")
data = await self.hass.async_add_executor_job(
self.my_api.requestAllData
Expand Down

0 comments on commit 365539f

Please sign in to comment.