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 67708d2 commit ec4170bCopy full SHA for ec4170b
CHANGELOG.md
@@ -5,6 +5,9 @@
5
#### Enhancements
6
- Improved exception messages emitted by the `Live` client to always include contents of any `ErrorMsg` sent by the gateway
7
8
+#### Bug fixes
9
+- Fixed an issue where calling `Live.stop` would not close the connection within a reasonable time
10
+
11
## 0.44.0 - 2024-10-22
12
13
databento/live/session.py
@@ -440,8 +440,7 @@ def stop(self) -> None:
440
return
441
if self._transport.can_write_eof():
442
self._transport.write_eof()
443
- else:
444
- self._transport.close()
+ self._transport.close()
445
446
def start(self) -> None:
447
"""
0 commit comments