Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
3.3.0, 3.2.1, 3.1.4
-
None
Description
I found that the description of the two fields: ProxyOpFailureStandby and ProxyOpFailureCommunicate in the website may be misplaced.
When I reviewed the code to see the meaning of the two fields, I found that their descriptions were indeed misplaced.
Origin code:
@Metric("Number of operations to fail to reach NN") private MutableCounterLong proxyOpFailureStandby; @Metric("Number of operations to hit a standby NN") private MutableCounterLong proxyOpFailureCommunicate;
They should be:
@Metric("Number of operations to hit a standby NN") private MutableCounterLong proxyOpFailureStandby; @Metric("Number of operations to fail to reach NN") private MutableCounterLong proxyOpFailureCommunicate;