Skip to content

Commit

Permalink
Set optional settings value to None
Browse files Browse the repository at this point in the history
  • Loading branch information
fugal-dy authored Nov 9, 2023
1 parent b843ad7 commit b93ad24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Settings(BaseSettings):
model_config = SettingsConfigDict(env_prefix="PROXY_")
OBJECT_STORE_HOST: str = "minio"
OBJECT_STORE_PORT: Optional[int]
OBJECT_STORE_PORT: Optional[int] = None
OBJECT_STORE_SSL_ENABLED: bool = True
SECRET: str
LOG_LEVEL: str = "info"
Expand Down

0 comments on commit b93ad24

Please sign in to comment.