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.
This commit is contained in:
Saúl Ibarra Corretgé 2022-08-11 13:19:51 +02:00 committed by GitHub
parent 2d106d830b
commit 2a7db7c283
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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