Skip to content

Commit 30b4c1c

Browse files
committed
Fix bug in default value
1 parent fcc5266 commit 30b4c1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/function/fastapp/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Settings(BaseSettings):
1919
WEBSITE_NAME: str = Field(default="test", alias="WEBSITE_SITE_NAME")
2020
WEBSITE_INSTANCE_ID: str = Field(default="0", alias="WEBSITE_INSTANCE_ID")
2121
WEBSITE_AUTH_ENCRYPTION_KEY: str = Field(
22-
default="0", alias="WEBSITE_AUTH_ENCRYPTION_KEY"
22+
default="", alias="WEBSITE_AUTH_ENCRYPTION_KEY"
2323
)
2424
MY_SECRET_CONFIG: str = Field(default="", alias="MY_SECRET_CONFIG")
2525

0 commit comments

Comments
 (0)