1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-01 16:22:43 +02:00

avoid fatal error if port is already in use

This commit is contained in:
chrislu 2022-05-04 14:55:14 -07:00
parent f7366a9668
commit ef6c6c450e

View file

@ -1,6 +1,7 @@
package util
import (
"github.com/chrislusf/seaweedfs/weed/glog"
"net"
"time"
@ -112,7 +113,8 @@ func NewIpAndLocalListeners(host string, port int, timeout time.Duration) (ipLis
if host != "localhost" && host != "" && host != "0.0.0.0" && host != "127.0.0.1" && host != "[::]" && host != "[::1]" {
listner, err = net.Listen("tcp", JoinHostPort("localhost", port))
if err != nil {
return
glog.V(0).Infof("skip starting on %s:%d: %v", host, port, err)
return ipListner, nil, nil
}
localListener = &Listener{