[client] Increase stun status probe timeout (#3930)

This commit is contained in:
Viktor Liu
2025-06-05 15:22:59 +02:00
committed by GitHub
parent 122a89c02b
commit 64f111923e
2 changed files with 2 additions and 2 deletions

View File

@ -1678,7 +1678,7 @@ func (e *Engine) RunHealthProbes() bool {
func (e *Engine) probeICE(stuns, turns []*stun.URI) []relay.ProbeResult {
return append(
relay.ProbeAll(e.ctx, relay.ProbeSTUN, stuns),
relay.ProbeAll(e.ctx, relay.ProbeSTUN, turns)...,
relay.ProbeAll(e.ctx, relay.ProbeTURN, turns)...,
)
}