From d8583e30fb6be67625985bf9821ea46a590318a7 Mon Sep 17 00:00:00 2001 From: James Guthrie Date: Thu, 3 Mar 2022 08:58:14 +0100 Subject: [PATCH] Add missing word to slow ingestion warning --- pkg/pgmodel/ingestor/watcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/pgmodel/ingestor/watcher.go b/pkg/pgmodel/ingestor/watcher.go index 045783ebaa..3d44103f68 100644 --- a/pkg/pgmodel/ingestor/watcher.go +++ b/pkg/pgmodel/ingestor/watcher.go @@ -98,7 +98,7 @@ func warnHighRatio(ratio float64, inRate, outRate float64) { } func warnSlowIngestion(duration time.Duration) { - log.Warn("msg", "[WARNING] Ingestion is a very long time", "duration", + log.Warn("msg", "[WARNING] Ingestion is taking a very long time", "duration", duration.String(), "threshold", reportDurationThreshold.String()) }