Update to support tls config options

This commit is contained in:
Asim 2016-01-16 23:44:55 +00:00 committed by Vasiliy Tolstov
parent bf60028cf1
commit 96937ae487

View File

@ -68,6 +68,7 @@ func (n *nbroker) Connect() error {
opts := nats.DefaultOptions
opts.Servers = n.addrs
opts.Secure = n.opts.Secure
opts.TLSConfig = n.opts.TLSConfig
c, err := opts.Connect()
if err != nil {