diff options
author | Francis Lavoie <[email protected]> | 2024-11-13 03:55:51 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-11-13 03:55:51 -0500 |
commit | 315715e90ffa25c4ad0d8a96e828dbdf6f638583 (patch) | |
tree | 3b22815c57acc730c90b6dcaa740a34a7073a36b /listen.go | |
parent | 238f1108e6600049d9041abc88db24526ee4f882 (diff) | |
download | caddy-315715e90ffa25c4ad0d8a96e828dbdf6f638583.tar.gz caddy-315715e90ffa25c4ad0d8a96e828dbdf6f638583.zip |
core: Implement FastAbs to avoid repeated os.Getwd calls (#6687)
* core: Implement FastAbs to avoid repeated os.Getwd calls
* Lint
* Rename files
Diffstat (limited to 'listen.go')
-rw-r--r-- | listen.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ import ( "go.uber.org/zap" ) -func reuseUnixSocket(network, addr string) (any, error) { +func reuseUnixSocket(_, _ string) (any, error) { return nil, nil } |