diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-10-18 03:47:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-17 20:47:12 +0100 |
commit | 4a57c9ea17a86e579751025cd0a7c2e6de374726 (patch) | |
tree | d9de60079592c541c9e6f2a983ec754199739a2f /modules/graceful/restart_unix.go | |
parent | 5326f4c9c59cce8a1d8f78afd486ebb8688b45ab (diff) | |
download | gitea-4a57c9ea17a86e579751025cd0a7c2e6de374726.tar.gz gitea-4a57c9ea17a86e579751025cd0a7c2e6de374726.zip |
Fix some lints (#17337)
Fix some linting problems.
Diffstat (limited to 'modules/graceful/restart_unix.go')
-rw-r--r-- | modules/graceful/restart_unix.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/graceful/restart_unix.go b/modules/graceful/restart_unix.go index 392ed60cb3..9969e007c3 100644 --- a/modules/graceful/restart_unix.go +++ b/modules/graceful/restart_unix.go @@ -55,7 +55,9 @@ func RestartProcess() (int, error) { unixListener.SetUnlinkOnClose(false) } // Remember to close these at the end. - defer files[i].Close() + defer func(i int) { + _ = files[i].Close() + }(i) } // Use the original binary location. This works with symlinks such that if |