From 3406882f1d8dd1d21d370c5e8e8284ca935b7a81 Mon Sep 17 00:00:00 2001 From: Carlton N Hanna Date: Tue, 17 Sep 2024 10:39:01 -0600 Subject: [PATCH] add issue number to TODO --- .../kotlin/io/provenance/explorer/domain/entities/Blocks.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/src/main/kotlin/io/provenance/explorer/domain/entities/Blocks.kt b/service/src/main/kotlin/io/provenance/explorer/domain/entities/Blocks.kt index ec26a14c..01512d59 100644 --- a/service/src/main/kotlin/io/provenance/explorer/domain/entities/Blocks.kt +++ b/service/src/main/kotlin/io/provenance/explorer/domain/entities/Blocks.kt @@ -311,7 +311,7 @@ class MissedBlocksRecord(id: EntityID) : IntEntity(id) { val endTime = System.currentTimeMillis() val duration = endTime - startTime - // TODO: remove warning if problem is fixed after adding limit to queries + // TODO: remove warning if problem is fixed after adding limit to queries See: https://github.com/provenance-io/explorer-service/issues/546 if (duration > 1000) { logger().warn("Processing calculateMissedAndInsert took ${duration}ms for height: $height and valconsAddr: $valconsAddr") }