mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Fix log limit
This commit is contained in:
parent
ae661e9961
commit
490341af09
1 changed files with 1 additions and 0 deletions
|
|
@ -133,6 +133,7 @@ class Update extends Action
|
||||||
// Fetch operations ordered by sequence by default to replay operations in exact order they were created
|
// Fetch operations ordered by sequence by default to replay operations in exact order they were created
|
||||||
$operations = $dbForProject->find('transactionLogs', [
|
$operations = $dbForProject->find('transactionLogs', [
|
||||||
Query::equal('transactionInternalId', [$transaction->getSequence()]),
|
Query::equal('transactionInternalId', [$transaction->getSequence()]),
|
||||||
|
Query::limit(PHP_INT_MAX),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// Track transaction state for cross-operation visibility
|
// Track transaction state for cross-operation visibility
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue