From 37113e70250add1dda6e37197bf3af11f68f340d Mon Sep 17 00:00:00 2001 From: Steven Danna Date: Wed, 20 Mar 2024 10:09:45 +0000 Subject: [PATCH] f --- pkg/kv/kvserver/store_snapshot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kv/kvserver/store_snapshot.go b/pkg/kv/kvserver/store_snapshot.go index c57768182eb1..e51310780774 100644 --- a/pkg/kv/kvserver/store_snapshot.go +++ b/pkg/kv/kvserver/store_snapshot.go @@ -966,7 +966,7 @@ func (kvSS *kvBatchSnapshotStrategy) Send( timingTag.stop("totalTime") log.Eventf(ctx, "finished sending snapshot batches, sent a total of %d bytes", bytesSent) - kvSS.status = redact.Sprintf("kvs=%d rangeKVs=%d sharedSSTs=%d, externalSSTs", kvs, rangeKVs, sharedSSTCount, externalSSTCount) + kvSS.status = redact.Sprintf("kvs=%d rangeKVs=%d sharedSSTs=%d, externalSSTs=%d", kvs, rangeKVs, sharedSSTCount, externalSSTCount) return bytesSent, nil }