[Update]
This commit is contained in:
		
							parent
							
								
									3fe4271f1b
								
							
						
					
					
						commit
						1e3bfd7392
					
				| 
						 | 
				
			
			@ -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))
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue