From efe50b68e66835a6e4108897ed8aca0a5b70c401 Mon Sep 17 00:00:00 2001 From: Evan Tschannen Date: Mon, 5 Oct 2020 14:16:52 -0700 Subject: [PATCH] fix compile error --- fdbserver/MasterProxyServer.actor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdbserver/MasterProxyServer.actor.cpp b/fdbserver/MasterProxyServer.actor.cpp index b36c468a0a..d6858f3918 100644 --- a/fdbserver/MasterProxyServer.actor.cpp +++ b/fdbserver/MasterProxyServer.actor.cpp @@ -138,7 +138,7 @@ struct ProxyStats { explicit ProxyStats(UID id, Version* pVersion, NotifiedVersion* pCommittedVersion, int64_t *commitBatchesMemBytesCountPtr) : cc("ProxyStats", id.toString()), recentRequests(0), lastBucketBegin(now()), - maxCompute(0), minCompute(1e12), + maxComputeNS(0), minComputeNS(1e12), bucketInterval(FLOW_KNOBS->BASIC_LOAD_BALANCE_UPDATE_RATE/FLOW_KNOBS->BASIC_LOAD_BALANCE_BUCKETS), txnRequestIn("TxnRequestIn", cc), txnRequestOut("TxnRequestOut", cc), txnRequestErrors("TxnRequestErrors", cc), txnStartIn("TxnStartIn", cc), txnStartOut("TxnStartOut", cc),