nabarunnag commented on a change in pull request #6347:
URL: https://github.com/apache/geode/pull/6347#discussion_r620582045
##########
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:
Issue:
Possible loss of precision warning due to converting a long to int
Are there alternative to changing this MBean to be long rather than int.
Please do let me know if this is not possible on this thread and I will
change the review to approved.
--
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]