Skip to content

Commit

Permalink
Increasing size limit for transactions (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
apetenchea authored Apr 26, 2024
1 parent eb77382 commit 09ec84e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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)

Expand Down

0 comments on commit 09ec84e

Please sign in to comment.