mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 12:10:55 +00:00
fmt it and remove the init var
This commit is contained in:
parent
be60f47488
commit
9f2a2507fd
@ -57,7 +57,6 @@ const (
|
||||
PreSignal = iota
|
||||
// PostSignal is the position to add filter after signal
|
||||
PostSignal
|
||||
|
||||
// StateInit represent the application inited
|
||||
StateInit
|
||||
// StateRunning represent the application is running
|
||||
@ -82,17 +81,13 @@ var (
|
||||
// DefaultMaxHeaderBytes is the Max HTTP Herder size, default is 0, no limit
|
||||
DefaultMaxHeaderBytes int
|
||||
// DefaultTimeout is the shutdown server's timeout. default is 60s
|
||||
DefaultTimeout time.Duration
|
||||
DefaultTimeout = 60 * time.Second
|
||||
|
||||
isChild bool
|
||||
socketOrder string
|
||||
once sync.Once
|
||||
)
|
||||
|
||||
func init() {
|
||||
DefaultMaxHeaderBytes = 0
|
||||
DefaultTimeout = 60 * time.Second
|
||||
}
|
||||
func onceInit() {
|
||||
regLock = &sync.Mutex{}
|
||||
flag.BoolVar(&isChild, "graceful", false, "listen on open fd (after forking)")
|
||||
|
Loading…
Reference in New Issue
Block a user