Closed vincentfretin closed 6 months ago
with .env:
.env
EVENT_LOOPS=4 ALLOW_LOOP_INDICATION=true
docker compose exec -it janus bash cat ./usr/etc/janus/janus.jcfg |grep loop event_loops = 4 #allow_loop_indication = true
so the ALLOW_LOOP_INDICATION had no effect. This wasn't properly verified when #7 was done.
ALLOW_LOOP_INDICATION
The config filename was wrong janus.cfg instead of janus.jcfg.
I added the set -e flag to properly log an error if a command fail, for any future contribution.
set -e
janus-1 | sed: can't read /usr/etc/janus/janus.cfg: No such file or directory janus-1 exited with code 2
and I fixed the filename of course.
with
.env
:so the
ALLOW_LOOP_INDICATION
had no effect. This wasn't properly verified when #7 was done.The config filename was wrong janus.cfg instead of janus.jcfg.
I added the
set -e
flag to properly log an error if a command fail, for any future contribution.and I fixed the filename of course.