Skip to content

Commit abd1692

Browse files
committed
fix fatal error: concurrent map iteration and map write
Signed-off-by: ningmingxiao <[email protected]> (cherry picked from commit 0fe9f0b) Signed-off-by: ningmingxiao <[email protected]>
1 parent f9b7e73 commit abd1692

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cri/streaming/portforward/httpstream.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ func (h *httpStreamHandler) portForward(p *httpStreamPair) {
279279
// see: https://github.com/kubernetes/kubernetes/issues/74551 for detail
280280
//
281281
// In both cases, we should RESET the httpStream.
282-
klog.ErrorS(err, "forwarding port", "conn", h.conn, "request", p.requestID, "port", portString)
282+
klog.Errorf("(conn=%p, request=%s) forwarding port %s failed: %v", h.conn, p.requestID, portString, err)
283283
resetStreams = true
284284
return
285285
}

0 commit comments

Comments
 (0)