From fb477399f8b2594b5fe9d98201f14c04301f17d3 Mon Sep 17 00:00:00 2001 From: "A.J. Beamon" Date: Mon, 31 Aug 2020 16:25:39 -0700 Subject: [PATCH] Remove a line that logs whether confChange was non-null. This was previously a pointer, and the logging indicated whether the caller expected a result. It is now a reference type, and we can't determine what the caller expects. --- fdbserver/ApplyMetadataMutation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdbserver/ApplyMetadataMutation.cpp b/fdbserver/ApplyMetadataMutation.cpp index 2df5f5af42..23466ece9f 100644 --- a/fdbserver/ApplyMetadataMutation.cpp +++ b/fdbserver/ApplyMetadataMutation.cpp @@ -296,7 +296,7 @@ void applyMetadataMutations(UID const& dbgid, Arena& arena, VectorRef(m.param2, Unversioned()); - TraceEvent("MinRequiredCommitVersion", dbgid).detail("Min", requested).detail("Current", popVersion).detail("HasConf", !!confChange); + TraceEvent("MinRequiredCommitVersion", dbgid).detail("Min", requested).detail("Current", popVersion); if(!initialCommit) txnStateStore->set(KeyValueRef(m.param1, m.param2)); confChange = true; TEST(true); // Recovering at a higher version.