Skip to content

Commit 0c646d4

Browse files
authored
Only enable arrow-endpoints when version >= 5.30 (#36)
Once we have a v5.30tag of the server with arrow/multistream, we can merge this and complete the ticket.
1 parent 0beef06 commit 0c646d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

btrdb/conn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def _is_arrow_enabled(info):
179179
if logger.isEnabledFor(logging.DEBUG):
180180
logger.debug(f"major version: {major}")
181181
logger.debug(f"minor version: {minor}")
182-
if major >= 5 and minor >= 29:
182+
if major >= 5 and minor >= 30:
183183
return True
184184
else:
185185
return False

0 commit comments

Comments
 (0)