Decrease the compression level when sending configs to BunkerWeb

This commit is contained in:
Théophile Diot 2023-05-01 10:52:12 -04:00
parent 57cb6e9c44
commit bed6d742f0
No known key found for this signature in database
GPG Key ID: E752C80DB72BB014
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class ApiCaller:
ret = True
with BytesIO() as tgz:
with taropen(
mode="w:gz", fileobj=tgz, dereference=True, compresslevel=5
mode="w:gz", fileobj=tgz, dereference=True, compresslevel=3
) as tf:
tf.add(path, arcname=".")
tgz.seek(0, 0)