diff options
author | zeripath <art27@cantab.net> | 2019-11-24 02:11:24 +0000 |
---|---|---|
committer | Antoine GIRARD <sapk@users.noreply.github.com> | 2019-11-24 03:11:24 +0100 |
commit | e3f22ad2cca094cba057683f35f8536e3f71a582 (patch) | |
tree | 9585b6493b3a4bff13d113c9e2d7ed8f26f2c16a /modules/graceful/restart_unix.go | |
parent | bb2c0c3729b4bb4b1475b176dfe8e1d43f49481f (diff) | |
download | gitea-e3f22ad2cca094cba057683f35f8536e3f71a582.tar.gz gitea-e3f22ad2cca094cba057683f35f8536e3f71a582.zip |
Graceful: Allow graceful restart for unix sockets (#9113)
Previously we could not handle graceful restarts for http over unix
sockets. These can now be handled.
Diffstat (limited to 'modules/graceful/restart_unix.go')
-rw-r--r-- | modules/graceful/restart_unix.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/graceful/restart_unix.go b/modules/graceful/restart_unix.go index 8c68965f5d..3fc4f0511d 100644 --- a/modules/graceful/restart_unix.go +++ b/modules/graceful/restart_unix.go @@ -9,6 +9,7 @@ package graceful import ( "fmt" + "net" "os" "os/exec" "strings" @@ -48,6 +49,10 @@ func RestartProcess() (int, error) { if err != nil { return 0, err } + + if unixListener, ok := l.(*net.UnixListener); ok { + unixListener.SetUnlinkOnClose(false) + } // Remember to close these at the end. defer files[i].Close() } |