Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

networktest.testQuality() -- Unable to Publish (1500) msg: ICEWorkflow (Safari desktop) #145

Open
Osborw opened this issue Jun 1, 2020 · 0 comments

Comments

@Osborw
Copy link

Osborw commented Jun 1, 2020

On Safari desktop (13.1.1), we're frequently experiencing the error below while calling the testQuality() function of Network Test.

image

We call testQuality(), but it sits waiting and later fails and returns this error.

Our code is below:

 const testaroo = new NetworkTest(OT, conf, { audioOnly })
  const qualityStats = []
  const statsToCollect = 10
  let iteration = 0

  const qualityResults = await testaroo.testQuality(stats => {
    iteration += 1
    onProgress({ wat: 'stats', iteration, statsToCollect, data: stats })
    qualityStats.push(stats)

    if (qualityStats.length === statsToCollect) {
      testaroo.stop()
      return
    }
  }).catch(err => {
    console.log('OT network test error', err)
    testaroo.stop()
  })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant