mirror of
https://github.com/caddyserver/caddy.git
synced 2025-01-23 09:06:29 +01:00
rlimit_posix.go: Use backticks for shell code (#2235)
This commit is contained in:
parent
fcbb90a9af
commit
f56696f478
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ func checkFdlimit() {
|
|||
err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, rlimit)
|
||||
if err == nil && rlimit.Cur < min {
|
||||
fmt.Printf("WARNING: File descriptor limit %d is too low for production servers. "+
|
||||
"At least %d is recommended. Fix with \"ulimit -n %d\".\n", rlimit.Cur, min, min)
|
||||
"At least %d is recommended. Fix with `ulimit -n %d`.\n", rlimit.Cur, min, min)
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue