Browse Source

print a log message when the nats connection is not available

Tobias von Dewitz 6 năm trước cách đây
mục cha
commit
6595810e6a
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      main.go

+ 3 - 0
main.go

@@ -353,6 +353,9 @@ func publishRequest(queue string, request *data.Request) {
 	}
 
 	if !natsIsAvailable {
+		if rand.Intn(100) == 0 {
+			log.Println("nats connection is not available")
+		}
 		return
 	}