Explorar el Código

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.
Saúl Ibarra Corretgé hace 2 años
padre
commit
2a7db7c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      jigasi/rootfs/defaults/logging.properties

+ 1 - 1
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