Skip to content

Commit c69b2b0

Browse files
committed
removed uneccessary log line
1 parent 3b16a89 commit c69b2b0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

agent/immortalstreams/handler.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,10 @@ func (h *Handler) handleUpgrade(w http.ResponseWriter, r *http.Request) {
201201
return
202202
}
203203

204-
// Keep the connection open until the context is cancelled
204+
// Keep the connection open until the context is canceled
205205
// The wsConn will handle connection closure through its Read/Write methods
206-
// When the connection is closed, the backing pipe will detect it and the context should be cancelled
206+
// When the connection is closed, the backing pipe will detect it and the context should be canceled
207207
<-connCtx.Done()
208-
h.logger.Debug(ctx, "websocket connection handler exiting")
209208
}
210209

211210
// wsConn adapts a WebSocket connection to io.ReadWriteCloser

0 commit comments

Comments
 (0)