Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

### Fixes
- Fix bug in bookmark page where it was not scrollable if there was too many bookmarks (vinayan3)
- Fix exception name in `storage/union.pyx` (sulan)

## 3.23.0 Jul 15, 2024

Expand Down
2 changes: 1 addition & 1 deletion aim/storage/union.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class ItemsIterator(ContainerItemsIterator):
for prefix, iterator in self._iterators.items():
try:
iterator.seek_to_first()
except (aimrocks.errorsRocksIOError, aimrocks.errors.Corruption):
except (aimrocks.errors.RocksIOError, aimrocks.errors.Corruption):
logger.debug(f'Detected corrupted db chunk \'{prefix}\'.')
corrupted_dbs.add(prefix)
self._corrupted_dbs.update(corrupted_dbs)
Expand Down