Skip to content

Commit

Permalink
fix: remove the hardcoded FF instances from config (#2005)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewleith authored Nov 27, 2024
1 parent e4f6a10 commit 9b682f1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ class Development(Config):
SESSION_PROTECTION = None
SYSTEM_STATUS_URL = "https://localhost:3000"
NO_BRANDING_ID = "0af93cf1-2c49-485f-878f-f3e662e651ef"
FF_ANNUAL_LIMIT = env.bool("FF_ANNUAL_LIMIT", True)


class Test(Development):
Expand Down Expand Up @@ -252,15 +251,13 @@ class Production(Config):
NOTIFY_LOG_LEVEL = "INFO"
SYSTEM_STATUS_URL = "https://status.notification.canada.ca"
NO_BRANDING_ID = "760c802a-7762-4f71-b19e-f93c66c92f1a"
FF_ANNUAL_LIMIT = False


class Staging(Production):
NOTIFY_ENVIRONMENT = "staging"
NOTIFY_LOG_LEVEL = "INFO"
SYSTEM_STATUS_URL = "https://status.staging.notification.cdssandbox.xyz"
NO_BRANDING_ID = "0af93cf1-2c49-485f-878f-f3e662e651ef"
FF_ANNUAL_LIMIT = True


class Scratch(Production):
Expand Down

0 comments on commit 9b682f1

Please sign in to comment.