From 389825d6a2b3d16f99d3dfba5f3dbb4516fdd7dc Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Mon, 11 Feb 2019 17:00:20 +0100 Subject: [PATCH] common/fdlimit: goimports --- common/fdlimit/fdlimit_darwin.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/fdlimit/fdlimit_darwin.go b/common/fdlimit/fdlimit_darwin.go index e207bb7cd6..be50873a85 100644 --- a/common/fdlimit/fdlimit_darwin.go +++ b/common/fdlimit/fdlimit_darwin.go @@ -16,7 +16,10 @@ package fdlimit -import "syscall" +import ( + "errors" + "syscall" +) // Raise tries to maximize the file descriptor allowance of this process // to the maximum hard-limit allowed by the OS.