From b08b1a546af2434432ba2721134a59365ef4e013 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 24 Jun 2022 10:58:42 +0200 Subject: [PATCH] :bug: Fix region spec on s3 storage backend This allows users use different region --- backend/src/app/storage/s3.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/storage/s3.clj b/backend/src/app/storage/s3.clj index f169f6bcf..c94b21a0c 100644 --- a/backend/src/app/storage/s3.clj +++ b/backend/src/app/storage/s3.clj @@ -59,7 +59,7 @@ ;; --- BACKEND INIT -(s/def ::region #{:eu-central-1}) +(s/def ::region ::us/keyword) (s/def ::bucket ::us/string) (s/def ::prefix ::us/string) (s/def ::endpoint ::us/string)