From ea9607302a64661c876427741215984b8311f66a Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Wed, 20 May 2015 20:50:19 -0600 Subject: [PATCH] Whoops --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 70c53762..4947c3d4 100644 --- a/main.go +++ b/main.go @@ -102,7 +102,7 @@ func main() { // Warn if ulimit is too low for production sites if (runtime.GOOS == "linux" || runtime.GOOS == "darwin") && - addr.IP.IsLoopback() && !checkedFdLimit { + !addr.IP.IsLoopback() && !checkedFdLimit { out, err := exec.Command("ulimit", "-n").Output() if err == nil { // Note that an error here need not be reported