mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 17:46:08 +03:00
Fix error handling around when completing an AS transaction (#8693)
This commit is contained in:
parent
f27a789697
commit
7a0fd6f98d
2 changed files with 2 additions and 1 deletions
1
changelog.d/8693.misc
Normal file
1
changelog.d/8693.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Add more type hints to the application services code.
|
|
@ -261,7 +261,7 @@ class ApplicationServiceTransactionWorkerStore(
|
|||
# has probably missed some events), so whine loudly but still continue,
|
||||
# since it shouldn't fail completion of the transaction.
|
||||
last_txn_id = self._get_last_txn(txn, service.id)
|
||||
if (txn_id + 1) != txn_id:
|
||||
if (last_txn_id + 1) != txn_id:
|
||||
logger.error(
|
||||
"appservice: Completing a transaction which has an ID > 1 from "
|
||||
"the last ID sent to this AS. We've either dropped events or "
|
||||
|
|
Loading…
Reference in a new issue