Browse Source

cleanup: Remove the octo config. (#1421)

dev1
bgrozev 4 years ago
parent
commit
43fd910912
No account linked to committer's email address
2 changed files with 1 additions and 12 deletions
  1. 1
    2
      JitsiConference.js
  2. 0
    10
      modules/xmpp/moderator.js

+ 1
- 2
JitsiConference.js View File

@@ -2856,8 +2856,7 @@ JitsiConference.prototype._updateProperties = function(properties = {}) {
2856 2856
             'bridge-count',
2857 2857
 
2858 2858
             // The conference creation time (set by jicofo).
2859
-            'created-ms',
2860
-            'octo-enabled'
2859
+            'created-ms'
2861 2860
         ];
2862 2861
 
2863 2862
         analyticsKeys.forEach(key => {

+ 0
- 10
modules/xmpp/moderator.js View File

@@ -212,16 +212,6 @@ Moderator.prototype.createConferenceIq = function() {
212 212
                 value: config.minBitrate
213 213
             }).up();
214 214
     }
215
-    if (config.testing && config.testing.octo
216
-        && typeof config.testing.octo.probability === 'number') {
217
-        if (Math.random() < config.testing.octo.probability) {
218
-            elem.c(
219
-                'property', {
220
-                    name: 'octo',
221
-                    value: true
222
-                }).up();
223
-        }
224
-    }
225 215
 
226 216
     let openSctp;
227 217
 

Loading…
Cancel
Save