diff options
Diffstat (limited to 'vendor/go.uber.org/automaxprocs/internal/cgroups/cgroups2.go')
-rw-r--r-- | vendor/go.uber.org/automaxprocs/internal/cgroups/cgroups2.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/go.uber.org/automaxprocs/internal/cgroups/cgroups2.go b/vendor/go.uber.org/automaxprocs/internal/cgroups/cgroups2.go index 3ac10c8b6..78556062f 100644 --- a/vendor/go.uber.org/automaxprocs/internal/cgroups/cgroups2.go +++ b/vendor/go.uber.org/automaxprocs/internal/cgroups/cgroups2.go @@ -159,6 +159,10 @@ func (cg *CGroups2) CPUQuota() (float64, bool, error) { if err != nil { return -1, false, err } + + if period == 0 { + return -1, false, errors.New("zero value for period is not allowed") + } } return float64(max) / float64(period), true, nil |