Browse Source

check for connection mq connection open

abhishek9686 1 year ago
parent
commit
13b11033b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mq/mq.go

+ 1 - 1
mq/mq.go

@@ -126,7 +126,7 @@ func Keepalive(ctx context.Context) {
 
 // IsConnected - function for determining if the mqclient is connected or not
 func IsConnected() bool {
-	return mqclient != nil && mqclient.IsConnected()
+	return mqclient != nil && mqclient.IsConnectionOpen()
 }
 
 // CloseClient - function to close the mq connection from server