mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-31 03:45:13 +00:00
Correctly handle total/remaining counts in the presence of sent_transasctions table
This commit is contained in:
parent
4a13ae7201
commit
af27b84ff7
1 changed files with 1 additions and 1 deletions
|
@ -454,7 +454,7 @@ class Porter(object):
|
|||
|
||||
total_count = remaining_count + inserted_rows
|
||||
|
||||
defer.returnValue((next_chunk, remaining_count, total_count))
|
||||
defer.returnValue((next_chunk, inserted_rows, total_count))
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def _get_remaining_count_to_port(self, table, next_chunk):
|
||||
|
|
Loading…
Add table
Reference in a new issue