mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 00:13:49 +01:00
lib/http: fix race condition
This commit is contained in:
parent
a85c0b0cc2
commit
5db4493557
@ -19,12 +19,9 @@ const (
|
||||
func NewBaseContext(ctx context.Context, url string) func(l net.Listener) context.Context {
|
||||
return func(l net.Listener) context.Context {
|
||||
if l.Addr().Network() == "unix" {
|
||||
ctx = context.WithValue(ctx, ctxKeyUnixSock, true)
|
||||
return ctx
|
||||
return context.WithValue(ctx, ctxKeyUnixSock, true)
|
||||
}
|
||||
|
||||
ctx = context.WithValue(ctx, ctxKeyPublicURL, url)
|
||||
return ctx
|
||||
return context.WithValue(ctx, ctxKeyPublicURL, url)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user