Skip to content

Commit

Permalink
Merge pull request #333 from projectcaluma/fix-settings-types
Browse files Browse the repository at this point in the history
fix(settings): fix wrong types of boolean settings
  • Loading branch information
czosel authored Sep 1, 2023
2 parents f12f5a1 + 80e2564 commit 4afb896
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions alexandria/settings/alexandria.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ def default(default_dev=env.NOTSET, default_prod=env.NOTSET):
ALEXANDRIA_MINIO_STORAGE_SECRET_KEY = env.str(
"ALEXANDRIA_MINIO_STORAGE_SECRET_KEY", default="minio123"
)
ALEXANDRIA_MINIO_STORAGE_USE_HTTPS = env.str(
ALEXANDRIA_MINIO_STORAGE_USE_HTTPS = env.bool(
"ALEXANDRIA_MINIO_STORAGE_USE_HTTPS", default=False
)
ALEXANDRIA_MINIO_STORAGE_MEDIA_BUCKET_NAME = env.str(
"ALEXANDRIA_MINIO_STORAGE_MEDIA_BUCKET_NAME", default="alexandria-media"
)
ALEXANDRIA_MINIO_STORAGE_AUTO_CREATE_MEDIA_BUCKET = env.str(
ALEXANDRIA_MINIO_STORAGE_AUTO_CREATE_MEDIA_BUCKET = env.bool(
"ALEXANDRIA_MINIO_STORAGE_AUTO_CREATE_MEDIA_BUCKET", default=True
)
ALEXANDRIA_MINIO_PRESIGNED_TTL_MINUTES = env.str(
Expand Down

0 comments on commit 4afb896

Please sign in to comment.