This commit is contained in:
Kevin Cotugno 2017-09-25 16:56:34 -07:00
parent 15ff0e08f2
commit a691554234
2 changed files with 2 additions and 3 deletions

View File

@ -18,9 +18,9 @@ type ListenerService struct {
closed bool closed bool
shouldRestart bool shouldRestart bool
restMu sync.Mutex restMu sync.Mutex
errorsMu sync.Mutex errorsMu sync.Mutex
sendErrors bool sendErrors bool
} }

View File

@ -56,7 +56,6 @@ func (c *Client) Open() error {
c.msgs <- msg c.msgs <- msg
} }
close(c.msgs) close(c.msgs)
close(c.err) close(c.err)
}() }()