mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 09:00:20 +08:00
9 lines
178 B
Go
9 lines
178 B
Go
package sysx
|
|
|
|
import "go.uber.org/automaxprocs/maxprocs"
|
|
|
|
// Automatically set GOMAXPROCS to match Linux container CPU quota.
|
|
func init() {
|
|
maxprocs.Set(maxprocs.Logger(nil))
|
|
}
|