Skip to content

Commit d6fac8e

Browse files
authored
jicofo: disable octo by default
1 parent 1fa5048 commit d6fac8e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ services:
187187
- ENABLE_CODEC_VP8
188188
- ENABLE_CODEC_VP9
189189
- ENABLE_CODEC_H264
190+
- ENABLE_OCTO
190191
- ENABLE_RECORDING
191192
- ENABLE_SCTP
192193
- JICOFO_AUTH_USER

jicofo/rootfs/defaults/jicofo.conf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
{{ $ENABLE_SCTP := .Env.ENABLE_SCTP | default "0" | toBool }}
33
{{ $AUTH_TYPE := .Env.AUTH_TYPE | default "internal" }}
44
{{ $ENABLE_RECORDING := .Env.ENABLE_RECORDING | default "0" | toBool }}
5+
{{ $ENABLE_OCTO := .Env.ENABLE_OCTO | default "0" | toBool }}
56

67
jicofo {
78
{{ if $ENABLE_AUTH }}
@@ -114,6 +115,12 @@ jicofo {
114115
{{ end }}
115116

116117
octo {
118+
// Whether or not to use Octo. Note that when enabled, its use will be determined by
119+
// $jicofo.bridge.selection-strategy. There's a corresponding flag in the JVB and these
120+
// two MUST be in sync (otherwise bridges will crash because they won't know how to
121+
// deal with octo channels).
122+
enabled = {{ $ENABLE_OCTO }}
123+
117124
id = "{{ .Env.JICOFO_SHORT_ID | default "1" }}"
118125
}
119126

0 commit comments

Comments
 (0)