1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 13:10:54 +00:00

Merge pull request #83 from shxsun/master

In go version 1.0.3 will call build error
This commit is contained in:
astaxie 2013-06-25 07:08:35 -07:00
commit 8358e0ff48

View File

@ -137,7 +137,7 @@ func GetInitListner(tcpaddr *net.TCPAddr) (l net.Listener, err error) {
countStr := os.Getenv(FDKey)
if countStr == "" {
return net.ListenTCP("tcp", tcpaddr)
} else {
}
count, err := strconv.Atoi(countStr)
if err != nil {
return nil, err
@ -149,4 +149,3 @@ func GetInitListner(tcpaddr *net.TCPAddr) (l net.Listener, err error) {
}
return l, nil
}
}