From ce3d9c13f560bb92a72c5652b56161e51c1eb1dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Pablo=20Villaf=C3=A1=C3=B1ez?= Date: Fri, 29 Nov 2024 15:27:00 +0100 Subject: [PATCH] chore: add changelog entry --- changelog/unreleased/thumbnail-create-and-rename.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 changelog/unreleased/thumbnail-create-and-rename.md diff --git a/changelog/unreleased/thumbnail-create-and-rename.md b/changelog/unreleased/thumbnail-create-and-rename.md new file mode 100644 index 0000000000..f349b49c3a --- /dev/null +++ b/changelog/unreleased/thumbnail-create-and-rename.md @@ -0,0 +1,8 @@ +Bugfix: Fix possible race condition when a thumbnails is stored in the FS + +A race condition could cause the thumbnail service to return a thumbnail +with 0 bytes or with partial content. In order to fix this, the service will +create a temporary file with the contents and then rename that file to its +final location. + +https://github.com/owncloud/ocis/pull/10693