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

pull/123/head
Erik Johnston 2015-04-28 12:40:04 +01:00
parent 4a13ae7201
commit af27b84ff7
1 changed files with 1 additions and 1 deletions

View File

@ -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):