Skip to content

Commit 78901f1

Browse files
Disable gzip compression, it is very slow.
1 parent e8d6869 commit 78901f1

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
@@ -60,7 +60,7 @@ def __init__(self, addrportstr, apikey=None):
6060
6161
"""
6262
addrport = addrportstr.split(":", 2)
63-
chan_ops = [("grpc.default_compression_algorithm", CompressionAlgorithm.gzip)]
63+
chan_ops = []
6464

6565
if len(addrport) != 2:
6666
raise ValueError("expecting address:port")

0 commit comments

Comments
 (0)