Skip to content

Commit

Permalink
Increase timeout of async_check_firmware_available (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shutgun authored Sep 14, 2023
1 parent b8f5f38 commit 8c7e24a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion devolo_plc_api/device_api/deviceapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ async def async_check_firmware_available(self) -> UpdateFirmwareCheck:
"""
self._logger.debug("Checking for new firmware.")
update_firmware_check = UpdateFirmwareCheck()
response = await self._async_get("UpdateFirmwareCheck")
response = await self._async_get("UpdateFirmwareCheck", timeout=30.0)
update_firmware_check.ParseFromString(await response.aread())
return update_firmware_check

Expand Down
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.4.1] - 2023/09/14

### Fixed

- Increase timeout of async_check_firmware_available to handle unknown errors gracefully

## [v1.4.0] - 2023/07/26

### Added
Expand Down

0 comments on commit 8c7e24a

Please sign in to comment.