1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Make server_windows.go consistent with server_linux.go

Signed-off-by: Darren Shepherd <darren@rancher.com>
This commit is contained in:
Darren Shepherd 2015-04-01 17:26:22 -07:00
parent 34f44c642f
commit 7433c9c92a

View file

@ -39,10 +39,12 @@ func NewServer(proto, addr string, job *engine.Job) (Server, error) {
} }
// Called through eng.Job("acceptconnections") // Called through eng.Job("acceptconnections")
func AcceptConnections(job *engine.Job) engine.Status { func AcceptConnections(job *engine.Job) error {
// close the lock so the listeners start accepting connections // close the lock so the listeners start accepting connections
if activationLock != nil { select {
case <-activationLock:
default:
close(activationLock) close(activationLock)
} }
return engine.StatusOK return nil
} }