From be57fd5b2670dfae139b0c89b83246226d93532e Mon Sep 17 00:00:00 2001 From: Trevor Clinkenbeard Date: Wed, 23 Mar 2022 11:07:06 -0700 Subject: [PATCH] Fix `TEST` macro comment Co-authored-by: A.J. Beamon --- fdbserver/TransactionTagCounter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdbserver/TransactionTagCounter.cpp b/fdbserver/TransactionTagCounter.cpp index f9215ea7cb..1f0a25c2cc 100644 --- a/fdbserver/TransactionTagCounter.cpp +++ b/fdbserver/TransactionTagCounter.cpp @@ -27,7 +27,7 @@ TransactionTagCounter::TransactionTagCounter(UID thisServerID) void TransactionTagCounter::addRequest(Optional const& tags, int64_t bytes) { if (tags.present()) { - TEST(true); // Tracking tag on storage server + TEST(true); // Tracking transaction tag in counter double cost = costFunction(bytes); for (auto& tag : tags.get()) { int64_t& count = intervalCounts[TransactionTag(tag, tags.get().getArena())];