Skip to content
Snippets Groups Projects
Commit af27b84f authored by Erik Johnston's avatar Erik Johnston
Browse files

Correctly handle total/remaining counts in the presence of sent_transasctions table

parent 4a13ae72
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment