mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
remove reuseport in ghttp
This commit is contained in:
parent
6f02ad60eb
commit
c00f528098
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2017 john@johng.cn http://johng.cn
|
||||
Copyright (c) 2017 john@goframe.org https://goframe.org
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -11,7 +11,6 @@ import (
|
||||
"crypto/tls"
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/gogf/gf/g/net/greuseport"
|
||||
"github.com/gogf/gf/g/os/glog"
|
||||
"github.com/gogf/gf/g/os/gproc"
|
||||
"net"
|
||||
@ -146,7 +145,7 @@ func (s *gracefulServer) getNetListener(addr string) (net.Listener, error) {
|
||||
} else {
|
||||
// 如果监听失败,1秒后重试,最多重试3次
|
||||
for i := 0; i < 3; i++ {
|
||||
ln, err = greuseport.Listen("tcp", addr)
|
||||
ln, err = net.Listen("tcp", addr)
|
||||
if err != nil {
|
||||
err = fmt.Errorf("%d: net.Listen error: %v", gproc.Pid(), err)
|
||||
time.Sleep(time.Second)
|
||||
|
Loading…
x
Reference in New Issue
Block a user