From 1a728ea023c478c2c07d64a283b1f690396ab6a0 Mon Sep 17 00:00:00 2001 From: Rob Date: Mon, 27 Nov 2023 03:13:55 +0900 Subject: [PATCH] Add s3-insecure to pydantic checker (#665) --- takahe/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/takahe/settings.py b/takahe/settings.py index f06f8f4..2bd43b2 100644 --- a/takahe/settings.py +++ b/takahe/settings.py @@ -28,7 +28,7 @@ class ImplicitHostname(AnyUrl): class MediaBackendUrl(AnyUrl): host_required = False - allowed_schemes = {"s3", "gs", "local"} + allowed_schemes = {"s3", "s3-insecure", "gs", "local"} def as_bool(v: str | list[str] | None):