Incorporate review

pull/6092/head
Brendan Abolivier 2019-09-24 14:43:38 +01:00
parent f02f14e09a
commit 12fe2a29bc
No known key found for this signature in database
GPG Key ID: 1E015C145F1916CD
1 changed files with 3 additions and 3 deletions

View File

@ -844,7 +844,7 @@ class RegistrationStore(
rows = self.cursor_to_dict(txn)
if not rows:
return True
return True, 0
rows_processed_nb = 0
@ -860,9 +860,9 @@ class RegistrationStore(
)
if batch_size > len(rows):
return (True, rows_processed_nb)
return True, len(rows)
else:
return (False, rows_processed_nb)
return False, len(rows)
end, nb_processed = yield self.runInteraction(
"users_set_deactivated_flag", _background_update_set_deactivated_flag_txn