1
0
Fork 0
mirror of https://github.com/dragonflydb/dragonfly.git synced 2024-12-14 11:58:02 +00:00

chore: disable big value ser on reg tests (#3629)

* disable big value ser on reg tests

Signed-off-by: kostas <kostas@dragonflydb.io>
This commit is contained in:
Kostas Kyrimis 2024-09-03 11:04:27 +03:00 committed by GitHub
parent 1a0d44354f
commit f8f8c69e6a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -347,7 +347,7 @@ class DflyInstanceFactory:
if version >= 1.21:
# Add 1 byte limit for big values
args.setdefault("serialization_max_chunk_size", 1)
args.setdefault("serialization_max_chunk_size", 0)
for k, v in args.items():
args[k] = v.format(**self.params.env) if isinstance(v, str) else v