We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 502b569 + 95e0d95 commit 801e6fdCopy full SHA for 801e6fd
1 file changed
cmd/runtimetest/main.go
@@ -267,12 +267,11 @@ func validateHostname(spec *rspec.Spec) error {
267
}
268
269
func validateRlimits(spec *rspec.Spec) error {
270
- if spec.Process == nil {
+ if runtime.GOOS == "windows" {
271
return nil
272
273
274
- if runtime.GOOS != "linux" && runtime.GOOS != "solaris" {
275
- logrus.Warnf("process.rlimits validation not yet implemented for OS %q", runtime.GOOS)
+ if spec.Process == nil {
276
277
278
0 commit comments