only base the thresholds on peers who are not in recovery
This commit is contained in:
@ -535,6 +535,10 @@ public class ProfileOrganizer {
|
|||||||
if (profile.getIsFailing() || (!profile.getIsActive()))
|
if (profile.getIsFailing() || (!profile.getIsActive()))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
// dont bother trying to make sense of things below the baseline
|
||||||
|
if (profile.getCapacityValue() <= CapacityCalculator.GROWTH_FACTOR)
|
||||||
|
continue;
|
||||||
|
|
||||||
totalCapacity += profile.getCapacityValue();
|
totalCapacity += profile.getCapacityValue();
|
||||||
totalIntegration += profile.getIntegrationValue();
|
totalIntegration += profile.getIntegrationValue();
|
||||||
reordered.add(profile);
|
reordered.add(profile);
|
||||||
|
Reference in New Issue
Block a user