Skip to content

Commit ccd25c4

Browse files
committed
Fix batch_read_descriptor
1 parent 631a0e8 commit ccd25c4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python/arcticdb/version_store/_store.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3652,8 +3652,7 @@ def _batch_read_descriptor(self, symbols, as_ofs, throw_on_error, date_range_ns_
36523652
for as_of in as_ofs_lists:
36533653
version_queries.append(self._get_version_query(as_of))
36543654

3655-
batch_read_options = _PythonVersionStoreBatchReadOptions()
3656-
batch_read_options.set_batch_throw_on_error(throw_on_error)
3655+
batch_read_options = _PythonVersionStoreBatchReadOptions(throw_on_error)
36573656
descriptions_or_errors = self.version_store.batch_read_descriptor(symbols, version_queries, batch_read_options)
36583657
args_list = list(zip(descriptions_or_errors, symbols, version_queries, as_ofs_lists))
36593658
description_results = []

0 commit comments

Comments
 (0)