Skip to content

Commit

Permalink
jicofo,jvb,jigasi: fix SENTRY_DSN cannot be defined
Browse files Browse the repository at this point in the history
  • Loading branch information
krombel authored Dec 3, 2023
1 parent e6a0c04 commit 71b3892
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jicofo/rootfs/defaults/logging.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ if .Env.SENTRY_DSN | default "0" | toBool }}
{{ if .Env.SENTRY_DSN }}
handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler
{{ else }}
handlers= java.util.logging.ConsoleHandler
Expand Down
2 changes: 1 addition & 1 deletion jigasi/rootfs/defaults/logging.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ if .Env.SENTRY_DSN | default "0" | toBool }}
{{ if .Env.SENTRY_DSN }}
handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler
{{ else }}
handlers=java.util.logging.ConsoleHandler
Expand Down
2 changes: 1 addition & 1 deletion jvb/rootfs/defaults/logging.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ if .Env.SENTRY_DSN | default "0" | toBool }}
{{ if .Env.SENTRY_DSN }}
handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler
{{ else }}
handlers= java.util.logging.ConsoleHandler
Expand Down

0 comments on commit 71b3892

Please sign in to comment.