Skip to content

Commit

Permalink
Minor fix in corruption fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
JBorrow committed Dec 17, 2024
1 parent a75a373 commit dfe56de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion librarian_background/corruption_fixer.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def core(self, session: Session) -> bool:
# This also deletes remote instances which will need to be repaired. However
# it is unlikely that we will be in that situation. Unfortunately we _must_ commit
# this as the files table must be accessed from a different table.
corrupt.file.delete(session=session, commit=True, force=True)
potential_file.delete(session=session, commit=True, force=True)

resend_request = CorruptionResendRequest(
file_name=corrupt.file_name,
Expand Down

0 comments on commit dfe56de

Please sign in to comment.