Skip to content

Commit

Permalink
BUGFIX: Add default DSN from env var
Browse files Browse the repository at this point in the history
Using an env var instead of an empty string allows for a lot easier deployment scenarios, which is why there are already some env vars in use in this project.

A sentry integration without DSN is invalid. So using a potentially empty env var here is equally bad as using an empty string as default from an "ready to go" standpoint. This allows for treating this as bugfix.

see #24
  • Loading branch information
paxuclus authored Jun 22, 2023
1 parent 6b2eafe commit 03b42b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Configuration/Settings.Dsn.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Netlogix:
Sentry:
dsn: ''
dsn: '%env:SENTRY_DSN%'

0 comments on commit 03b42b3

Please sign in to comment.