Make sure local dev still works with sentry
This commit is contained in:
parent
1dcd723bd4
commit
29afc8db7a
2 changed files with 6 additions and 5 deletions
|
@ -174,10 +174,11 @@ def create_app():
|
|||
|
||||
# For usage when you directly call the script with python
|
||||
if __name__ == "__main__":
|
||||
sentry_sdk.init(
|
||||
dsn=Configuration.SENTRY_DSN,
|
||||
integrations=[FlaskIntegration()]
|
||||
)
|
||||
if Configuration.SENTRY_DSN:
|
||||
sentry_sdk.init(
|
||||
dsn=Configuration.SENTRY_DSN,
|
||||
integrations=[FlaskIntegration()]
|
||||
)
|
||||
|
||||
app, app_mgr = create_app()
|
||||
app_mgr.run()
|
||||
|
|
|
@ -12,6 +12,6 @@ class Configuration:
|
|||
SECRET_KEY = "<change>"
|
||||
SLACK_WEBHOOK = None
|
||||
LOGFILE = "haldis.log"
|
||||
SENTRY_DSN = "<change>"
|
||||
SENTRY_DSN = None
|
||||
ZEUS_KEY = "tomtest"
|
||||
ZEUS_SECRET = "blargh"
|
||||
|
|
Loading…
Reference in a new issue