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 35bcd2e commit 6b54967Copy full SHA for 6b54967
CHANGELOG.md
@@ -7,6 +7,7 @@
7
8
#### Bug fixes
9
- Fixed issue where a large unreadable symbol subscription message could be sent
10
+- Fixed issue where calling `Live.stop` could cause a truncated DBN record to be written to a stream
11
12
## 0.24.0 - 2023-11-23
13
databento/live/session.py
@@ -328,7 +328,8 @@ def close(self) -> None:
328
return
329
if self._transport.can_write_eof():
330
self._loop.call_soon_threadsafe(self._transport.write_eof)
331
- self._loop.call_soon_threadsafe(self._transport.close)
+ else:
332
+ self._loop.call_soon_threadsafe(self._transport.close)
333
334
def subscribe(
335
self,
0 commit comments