mhansonp commented on a change in pull request #6347:
URL: https://github.com/apache/geode/pull/6347#discussion_r621720883
##########
File path:
geode-core/src/main/java/org/apache/geode/management/internal/beans/MemberMBeanBridge.java
##########
@@ -1392,7 +1392,7 @@ public String getRedundancyZone() {
}
int getRebalancesInProgress() {
- return resourceManagerStats.getRebalancesInProgress();
+ return (int) resourceManagerStats.getRebalancesInProgress();
Review comment:
My understanding is that this is an external interface. I have changed
nothing regarding precision. I just moved the decision of precision loss down
to the interface. The core of stats went away from ints a long time ago.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]