瀏覽代碼

print a log message when the nats connection is not available

Tobias von Dewitz 6 年之前
父節點
當前提交
6595810e6a
共有 1 個文件被更改,包括 3 次插入0 次删除
  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
 	}