Skip to content

Commit

Permalink
Updated the default value for the "use_demarcation_id" setting to "Tr…
Browse files Browse the repository at this point in the history
…ue".
  • Loading branch information
AzorianMatt committed Sep 20, 2023
1 parent 6f38aff commit f2be271
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy/config/defaults.env
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ GRST_ENV_FILE_ENCODING=UTF-8
GRST_ENV_SECRETS_DIR=
GRST_SALT=
GRST_SECRET_KEY=INSECURE-CHANGE-ME-6up8zksTD6mi4N3z3zFk
GRST_USE_DEMARCATION_ID=false
GRST_USE_DEMARCATION_ID=true
2 changes: 1 addition & 1 deletion src/app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class AppSettings(BaseSettings):
root_path: str = str(ROOT_PATH)
salt: str | None = None
secret_key: str = 'INSECURE-CHANGE-ME-6up8zksTD6mi4N3z3zFk'
use_demarcation_id: bool = False
use_demarcation_id: bool = True

version: str = '0.1.0'
""" The application version number """
Expand Down

0 comments on commit f2be271

Please sign in to comment.