go-zero/core/sysx/automaxprocs.go

9 lines
178 B
Go
Raw Normal View History

2020-07-26 17:09:05 +08:00
package sysx
import "go.uber.org/automaxprocs/maxprocs"
// Automatically set GOMAXPROCS to match Linux container CPU quota.
func init() {
maxprocs.Set(maxprocs.Logger(nil))
}