We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4199b2e commit 9a7668fCopy full SHA for 9a7668f
CHANGELOG.md
@@ -1,5 +1,12 @@
1
# Changelog
2
3
+## Next release
4
+
5
+### 🔧 Fixed
6
7
+* Explicitly raise exceptions in `AGSet.reconnect()`.
8
9
10
## 1.11.4 - November 11, 2025
11
12
### ✨ Improved
src/gort/devices/ag.py
@@ -187,7 +187,7 @@ async def reconnect(self):
187
188
for reply in replies:
189
if isinstance(reply, BaseException):
190
- raise
+ raise reply
191
192
return await self.list_alive_cameras()
193
0 commit comments