From d10a80765e7cf01d14c91475798f17362abc5a86 Mon Sep 17 00:00:00 2001 From: wangjian Date: Sun, 2 Apr 2023 23:23:27 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E5=A6=82=E6=9E=9C=E6=8A=A5=E9=94=99?= =?UTF-8?q?=EF=BC=8C=E5=B0=B1=E4=BC=9A=E6=8B=92=E7=BB=9D=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.go b/server.go index b0b9a56..640c308 100644 --- a/server.go +++ b/server.go @@ -129,7 +129,7 @@ func (s *Server) createNewClientConnection(ctx context.Context, listener Listene for { err := s.handle(ctx, qConn, connect, connId) if err != nil { - break + continue } } }(sctx, connect)