fix: remove deprecated LDAP username format support (#13165)

This commit is contained in:
Harshavardhana
2021-09-08 13:31:51 -07:00
committed by GitHub
parent 3c2efd9cf3
commit aaa3fc3805
6 changed files with 46 additions and 235 deletions

View File

@@ -18,6 +18,7 @@
package cmd
import (
"runtime"
"runtime/debug"
"github.com/minio/minio/internal/logger"
@@ -42,7 +43,7 @@ func setMaxResources() (err error) {
return err
}
if maxLimit < 4096 {
if maxLimit < 4096 && runtime.GOOS != globalWindowsOSName {
logger.Info("WARNING: maximum file descriptor limit %d is too low for production servers. At least 4096 is recommended. Fix with \"ulimit -n 4096\"", maxLimit)
}