From 67625dff7a3fce933d46b0820050d491f034bf0f Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Tue, 20 Aug 2024 17:49:45 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=87=EF=B8=8F(backend)=20downgrade=20djang?= =?UTF-8?q?o-storages[s3]=20to=201.14.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Downgrade django-storages[s3] from 1.14.4 to 1.14.2. It seems to have an issue with our setup. "default_storage.exists(file_key)" is returning False when we save a document even if the file exists in the S3 bucket. --- src/backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index fa5dcb51..074ef320 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -34,7 +34,7 @@ dependencies = [ "django-parler==2.3", "redis==5.0.8", "django-redis==5.4.0", - "django-storages[s3]==1.14.4", + "django-storages[s3]==1.14.2", "django-timezone-field>=5.1", "django==5.0.8", "djangorestframework==3.15.2",