Skip to content

Commit f5d6c5e

Browse files
committed
brotli=3
Signed-off-by: Anuraag Agrawal <anuraaga@gmail.com>
1 parent 83d9f88 commit f5d6c5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/connectrpc/_compression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def name(self) -> str:
4545
return "br"
4646

4747
def compress(self, data: bytes | bytearray) -> bytes:
48-
return brotli.compress(data, quality=6)
48+
return brotli.compress(data, quality=3)
4949

5050
def decompress(self, data: bytes | bytearray) -> bytes:
5151
return brotli.decompress(data)

0 commit comments

Comments
 (0)