Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
4.1.4, 4.1.5
-
None
Description
long obsoleteTime = System.currentTimeMillis() - obsoleteMember.getInitTime();
The above does not take into account instances that were moved to the obsolete list while in active status. In that case, it should be
long obsoleteTime = System.currentTimeMillis() - obsoleteMember.getObsoleteInitTime();
It should handle both inactive members (did not become active after being created), and faulty members.