mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-05 14:18:55 +01:00
Must update pending_transactions map before yield'ing
This commit is contained in:
parent
852816befe
commit
59362454dd
1 changed files with 2 additions and 2 deletions
|
@ -224,6 +224,8 @@ class TransactionQueue(object):
|
|||
]
|
||||
|
||||
try:
|
||||
self.pending_transactions[destination] = 1
|
||||
|
||||
limiter = yield get_retry_limiter(
|
||||
destination,
|
||||
self._clock,
|
||||
|
@ -239,8 +241,6 @@ class TransactionQueue(object):
|
|||
len(pending_failures)
|
||||
)
|
||||
|
||||
self.pending_transactions[destination] = 1
|
||||
|
||||
logger.debug("TX [%s] Persisting transaction...", destination)
|
||||
|
||||
transaction = Transaction.create_new(
|
||||
|
|
Loading…
Reference in a new issue