Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ошибка при удалении файлов #78

Closed
ArtemBalandin81 opened this issue Jul 3, 2024 · 1 comment · Fixed by #81
Closed

Ошибка при удалении файлов #78

ArtemBalandin81 opened this issue Jul 3, 2024 · 1 comment · Fixed by #81
Assignees

Comments

@ArtemBalandin81
Copy link
Owner

ArtemBalandin81 commented Jul 3, 2024

Why?

При попытке загрузки файла, записанного в БД, но которого нет в каталоге - бесхозный файл в БД - возникает 500 ошибка
При попытке удалить бесхозные файлы из БД - возникает 500 ошибка!

How To Do?

  • Проверить работу сервиса удаления и загрузки файлов. При его разработке данный тип ошибки должен был ловиться, но почему-то перестал. Возможно рефакторинг его нарушил
@ArtemBalandin81 ArtemBalandin81 self-assigned this Jul 3, 2024
@ArtemBalandin81 ArtemBalandin81 pinned this issue Jul 4, 2024
@ArtemBalandin81
Copy link
Owner Author

ArtemBalandin81 commented Jul 4, 2024

Для устранения ошибки внес следующие изменения:
src/api/services/file_attached.py

    async def delete_files_in_folder(
            self, files_to_delete: Sequence[Path]
    ) -> Sequence[Path] | dict[str, tuple[Any, ...]]:
        """Удаляет из каталога список переданных файлов (физическое удаление файлов)."""
        for file in files_to_delete:
            try:
                file.unlink()
            except FileNotFoundError as e:
                details = "{}{}".format(FILES_IN_FOLDER, NOT_FOUND)
                await log.aerror(details, file_to_remove=file)
                # raise HTTPException(status_code=403, detail=details)
                return {"message": e.args}
            return files_to_delete

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant