File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 55#### Bug fixes
66- Fixed an issue where the ` Live ` client would not raise an exception when reading an incompatible DBN version
77- Fixed an issue where sending lots of subscriptions could cause a ` BufferError `
8+ - Fixed an issue where ` Historical.batch.download ` was slow
89
910## 0.24.1 - 2023-12-15
1011
Original file line number Diff line number Diff line change @@ -370,7 +370,7 @@ def _download_file(
370370
371371 logger .debug ("Starting download of file %s" , output_path .name )
372372 with open (output_path , mode = mode ) as f :
373- for chunk in response .iter_content ():
373+ for chunk in response .iter_content (chunk_size = None ):
374374 f .write (chunk )
375375 logger .debug ("Download of %s completed" , output_path .name )
376376
You can’t perform that action at this time.
0 commit comments