From 9f07025818547313c3d2450e9b323c399c4bc179 Mon Sep 17 00:00:00 2001 From: Alex Petenchea Date: Fri, 26 Apr 2024 15:41:24 +0300 Subject: [PATCH] Increasing size limit for transactions --- tests/test_transaction.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_transaction.py b/tests/test_transaction.py index 7edc2a9c..dedf54eb 100644 --- a/tests/test_transaction.py +++ b/tests/test_transaction.py @@ -97,7 +97,7 @@ def test_transaction_commit(db, col, docs): sync=True, allow_implicit=False, lock_timeout=1000, - max_size=10000, + max_size=1024 * 1024, # 1MB ) txn_col = txn_db.collection(col.name) @@ -126,7 +126,7 @@ def test_transaction_fetch_existing(db, col, docs): sync=True, allow_implicit=False, lock_timeout=1000, - max_size=10000, + max_size=1024 * 1024, # 1MB ) txn_col = original_txn.collection(col.name)