Skip to content

Commit

Permalink
FORCE_STEAM_LINK_AFTER_DATE is int
Browse files Browse the repository at this point in the history
  • Loading branch information
micheljung authored Sep 15, 2018
1 parent 7e6d2ab commit 40dbf44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@
API_BASE_URL = os.getenv("API_BASE_URL", "https://api.dev.faforever.com/jwt")

FAF_POLICY_SERVER_BASE_URL = os.getenv("FAF_POLICY_SERVER_BASE_URL", "http://faf-policy-server")
FORCE_STEAM_LINK_AFTER_DATE = os.getenv('FORCE_STEAM_LINK_AFTER_DATE',1536105599) # 5 september 2018 by default
FORCE_STEAM_LINK_AFTER_DATE = int(os.getenv('FORCE_STEAM_LINK_AFTER_DATE', 1536105599)) # 5 september 2018 by default
FORCE_STEAM_LINK = os.getenv('FORCE_STEAM_LINK', 'false').lower() == 'true'

0 comments on commit 40dbf44

Please sign in to comment.