Closed im3ott closed 1 year ago
使用 goroutine 调用 server.Serve 后,在 HandleConnAccept 方法中,若返回 false,于 https://github.com/smallnest/rpcx/blob/b46ab77f3a4019a350529eb377e8ee457137b4f5/server/server.go#L260 会返回 Error(timeout: no recent network activity) 导致 Server 退出监听,应该如何处理呢?用 BlacklistPlugin 即可复现
不会导致退出监听,只是不接受这个ip的链接而已。
see the example: https://github.com/rpcxio/rpcx-examples/tree/master/plugin_blacklist
使用 goroutine 调用 server.Serve 后,在 HandleConnAccept 方法中,若返回 false,于 https://github.com/smallnest/rpcx/blob/b46ab77f3a4019a350529eb377e8ee457137b4f5/server/server.go#L260 会返回 Error(timeout: no recent network activity) 导致 Server 退出监听,应该如何处理呢?用 BlacklistPlugin 即可复现