mirror of
https://github.com/livekit/livekit.git
synced 2026-05-25 20:45:13 +00:00
stop retrying signal connection if the request context is closed (#1820)
This commit is contained in:
@@ -199,6 +199,10 @@ func (s *RTCService) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||
var cr connectionResult
|
||||
var initialResponse *livekit.SignalResponse
|
||||
for i := 0; i < 3; i++ {
|
||||
if err = r.Context().Err(); err != nil {
|
||||
break
|
||||
}
|
||||
|
||||
connectionTimeout := 3 * time.Second * time.Duration(i+1)
|
||||
ctx := utils.ContextWithAttempt(r.Context(), i)
|
||||
cr, initialResponse, err = s.startConnection(ctx, roomName, pi, connectionTimeout)
|
||||
|
||||
Reference in New Issue
Block a user