We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1402581 commit 8073e13Copy full SHA for 8073e13
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Changelog
2
3
+### 🔧 Fixed
4
+
5
+* Only retry `FPS.update_firmware_version()` if `n_positioners` is not `None`. Otherwise a time out is expected.
6
7
8
## 1.3.1 - January 10, 2023
9
10
### ✨ Improved
python/jaeger/fps.py
@@ -1200,7 +1200,7 @@ async def update_firmware_version(
1200
log.error("Failed retrieving firmware version.")
1201
return False
1202
1203
- if get_fw_command.status.timed_out and not is_retry:
+ if get_fw_command.status.timed_out and n_positioners and not is_retry:
1204
log.warning("GET_FIRMWARE_VERSION timed out. Retrying.")
1205
return await self.update_firmware_version(positioner_ids, is_retry=True)
1206
0 commit comments