jigasi: fix Sentry test

It's set to 0 by default, cast it to boolean to be sure, just like we do for the other containers.
pull/1364/head
Saúl Ibarra Corretgé 2 years ago committed by GitHub
parent 2d106d830b
commit 2a7db7c283
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      jigasi/rootfs/defaults/logging.properties

@ -1,4 +1,4 @@
{{ if .Env.SENTRY_DSN }}
{{ if .Env.SENTRY_DSN | default "0" | toBool }}
handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler
{{ else }}
handlers=java.util.logging.ConsoleHandler

Loading…
Cancel
Save