Skip to content

Commit

Permalink
Fix: Domain name must always be specified
Browse files Browse the repository at this point in the history
Not Optional
  • Loading branch information
hoh committed Apr 9, 2024
1 parent f1fd306 commit 553d1aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aleph/vm/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class Settings(BaseSettings):
SUPERVISOR_PORT: int = 4020

# Public domain name
DOMAIN_NAME: Optional[str] = Field(
DOMAIN_NAME: str = Field(
default="localhost",
description="Default public domain name",
)
Expand Down

0 comments on commit 553d1aa

Please sign in to comment.