Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase timeout of async_check_firmware_available #146

Merged
merged 1 commit into from
Sep 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devolo_plc_api/device_api/deviceapi.py
Original file line number Diff line number Diff line change
@@ -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

6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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