fix: connect and disconnect broker

This commit is contained in:
xinfei.wu 2018-12-20 11:31:36 +08:00 committed by Vasiliy Tolstov
parent 532edc786f
commit b7e57d6192

View File

@ -251,9 +251,11 @@ func (h *httpServer) Start() error {
go func() { go func() {
ch := <-h.exit ch := <-h.exit
ch <- ln.Close() ch <- ln.Close()
opts.Broker.Disconnect()
}() }()
return nil return opts.Broker.Connect()
} }
func (h *httpServer) Stop() error { func (h *httpServer) Stop() error {