Skip to content

Commit aaa3410

Browse files
committed
kvserver: make linter happy
Epic: none Release note: none
1 parent ae54cee commit aaa3410

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pkg/kv/kvserver/replica_raftstorage.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@ var snapshotIngestAsWriteThreshold = settings.RegisterByteSizeSetting(
4444
"size below which a range snapshot ingestion will be performed as a normal write",
4545
metamorphic.ConstantWithTestChoice[int64](
4646
"kv.snapshot.ingest_as_write_threshold",
47-
100<<10, /* default value is 100KiB */
48-
1<<30, /* 1GiB causes everything to be a normal write */
49-
0 /* 0B causes everything to be an ingest */),
47+
100<<10, // default value is 100KiB
48+
1<<30, // 1GiB causes everything to be a normal write
49+
0, // 0B causes everything to be an ingest
50+
),
5051
)
5152

5253
// replicaRaftStorage implements the raft.Storage interface.

0 commit comments

Comments
 (0)