1
0
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:
John 2019-02-14 15:43:31 +08:00
parent 6f02ad60eb
commit c00f528098
2 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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)