소스 검색

jvb: fix check for JVB_TCP_HARVESTER_DISABLED

Fixes: https://github.com/jitsi/docker-jitsi-meet/issues/885
Saúl Ibarra Corretgé 4 년 전
부모
커밋
ada7b952e9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      jvb/rootfs/defaults/jvb.conf

+ 1 - 1
jvb/rootfs/defaults/jvb.conf

@@ -10,7 +10,7 @@ videobridge {
             port = {{ .Env.JVB_PORT }}
         }
         tcp {
-            enabled = {{ not .Env.JVB_TCP_HARVESTER_DISABLED }}
+            enabled = {{ not (.Env.JVB_TCP_HARVESTER_DISABLED | default "true" | toBool) }}
             port = {{ .Env.JVB_TCP_PORT }}
 {{ if not (eq $JVB_TCP_PORT $JVB_TCP_MAPPED_PORT) }}
             mapped-port = {{ $JVB_TCP_MAPPED_PORT }}