This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Fix empty url_cache_thumbnails/yyyy-mm-dd/
directories being left behind
#10924
Merged
squahtx
merged 6 commits into
develop
from
squah/fix_url_cache_thumbnail_directory_removal
Sep 29, 2021
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d387b8e
Catch `FileNotFoundError`s instead of errnos in `_expire_url_cache_data`
ed23655
Extract 2 day expiry threshold into a constant
02d6f54
Fix empty `url_cache_thumbnails/yyyy-mm-dd/` directories being left b…
ecd5148
Add test for URL cache expiry
64733e9
Add newsfile
01492d6
Log failure to remove directories
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix empty
url_cache_thumbnails/yyyy-mm-dd/
directories being left b…
…ehind
- Loading branch information
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -512,12 +512,14 @@ async def _expire_url_cache_data(self) -> None: | |
|
||
removed_media.append(media_id) | ||
|
||
try: | ||
dirs = self.filepaths.url_cache_filepath_dirs_to_delete(media_id) | ||
for dir in dirs: | ||
dirs = self.filepaths.url_cache_filepath_dirs_to_delete(media_id) | ||
for dir in dirs: | ||
try: | ||
os.rmdir(dir) | ||
except Exception: | ||
pass | ||
except FileNotFoundError: | ||
pass # Already deleted, continue with deleting the rest | ||
except Exception: | ||
break # Failed, skip deleting the rest of the parent dirs | ||
|
||
await self.store.delete_url_cache(removed_media) | ||
|
||
|
@@ -544,12 +546,14 @@ async def _expire_url_cache_data(self) -> None: | |
logger.warning("Failed to remove media: %r: %s", media_id, e) | ||
continue | ||
|
||
try: | ||
dirs = self.filepaths.url_cache_filepath_dirs_to_delete(media_id) | ||
for dir in dirs: | ||
dirs = self.filepaths.url_cache_filepath_dirs_to_delete(media_id) | ||
for dir in dirs: | ||
try: | ||
os.rmdir(dir) | ||
except Exception: | ||
pass | ||
except FileNotFoundError: | ||
pass # Already deleted, continue with deleting the rest | ||
except Exception: | ||
break # Failed, skip deleting the rest of the parent dirs | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and here? |
||
|
||
thumbnail_dir = self.filepaths.url_cache_thumbnail_directory(media_id) | ||
try: | ||
|
@@ -562,12 +566,16 @@ async def _expire_url_cache_data(self) -> None: | |
|
||
removed_media.append(media_id) | ||
|
||
try: | ||
dirs = self.filepaths.url_cache_thumbnail_dirs_to_delete(media_id) | ||
for dir in dirs: | ||
dirs = self.filepaths.url_cache_thumbnail_dirs_to_delete(media_id) | ||
# Note that one of the directories to be deleted has already been | ||
# removed by the `rmtree` above. | ||
for dir in dirs: | ||
try: | ||
os.rmdir(dir) | ||
except Exception: | ||
pass | ||
except FileNotFoundError: | ||
pass # Already deleted, continue with deleting the rest | ||
except Exception: | ||
break # Failed, skip deleting the rest of the parent dirs | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and here? |
||
|
||
await self.store.delete_url_cache_media(removed_media) | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should probably log something here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds like a good idea. I got tired of the duplicated logic and factored it out into a function.