File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 99- Fixed an issue where the ` Live ` client would not raise an exception when reading an incompatible DBN version
1010- Fixed an issue where sending lots of subscriptions could cause a ` BufferError `
1111- Fixed an issue where ` Historical.batch.download ` was slow
12+ - Fixed an issue where ` Historical.timeseries.get_range ` was slow
1213
1314## 0.24.1 - 2023-12-15
1415
Original file line number Diff line number Diff line change 2323from databento .common .system import USER_AGENT
2424
2525
26- _32KIB = 1024 * 32 # 32_768
2726WARNING_HEADER_FIELD : str = "X-Warning"
2827
2928
@@ -133,7 +132,7 @@ def _stream(
133132 else :
134133 writer = open (path , "x+b" )
135134
136- for chunk in response .iter_content (chunk_size = _32KIB ):
135+ for chunk in response .iter_content (chunk_size = None ):
137136 writer .write (chunk )
138137
139138 if path is None :
You can’t perform that action at this time.
0 commit comments