Skip to content

Commit

Permalink
Fix exception suppression in TableFreezer's __exit__
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgarbar committed Jul 8, 2024
1 parent c70ad1f commit 190539c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch_backup/logic/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __enter__(self):
def __exit__(self, *exc: Any) -> bool:
self._thread_pool.shutdown(wait=False)
self._futures.clear()
return True
return False

def wait(self) -> List[Tuple[Table, bytes]]:
"""
Expand Down

0 comments on commit 190539c

Please sign in to comment.