This commit is contained in:
trunglt251292 2022-03-30 17:55:28 +07:00
parent 3fe4271f1b
commit 1e3bfd7392
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,7 @@ package natsio
import (
"errors"
"fmt"
"time"
"github.com/logrusorgru/aurora"
"github.com/nats-io/nats.go"
@ -32,6 +33,8 @@ func Connect(cfg Config) error {
// Connect options
opts := make([]nats.Option, 0)
opts = append(opts, nats.Timeout(1*time.Minute))
// Has authentication
if cfg.User != "" {
opts = append(opts, nats.UserInfo(cfg.User, cfg.Password))