Преглед изворни кода

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é пре 2 година
родитељ
комит
2a7db7c
1 измењених фајлова са 1 додато и 1 уклоњено
  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