Skip to content

Commit 9a7668f

Browse files
committed
Explicitly raise exceptions in AGSet.reconnect()
1 parent 4199b2e commit 9a7668f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## Next release
4+
5+
### 🔧 Fixed
6+
7+
* Explicitly raise exceptions in `AGSet.reconnect()`.
8+
9+
310
## 1.11.4 - November 11, 2025
411

512
### ✨ Improved

src/gort/devices/ag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ async def reconnect(self):
187187

188188
for reply in replies:
189189
if isinstance(reply, BaseException):
190-
raise
190+
raise reply
191191

192192
return await self.list_alive_cameras()
193193

0 commit comments

Comments
 (0)