mirror of
https://github.com/github/codeql.git
synced 2026-01-06 03:00:24 +01:00
fix a mistake :(
This commit is contained in:
@@ -7,6 +7,6 @@ FLASK_DEBUG = True
|
||||
# it is good to check default value always, maybe
|
||||
# the user responsible for setup the application make a mistake
|
||||
# and has not changed the default SECRET_KEY value
|
||||
SECRET_KEY = os.getenv('envKey') # A_CONSTANT_SECRET
|
||||
SECRET_KEY = os.getenv('envKey', "A_CONSTANT_SECRET") # A_CONSTANT_SECRET
|
||||
if SECRET_KEY == "A_CONSTANT_SECRET":
|
||||
raise "not possible"
|
||||
|
||||
Reference in New Issue
Block a user