ICU-22536 Fix ICUServiceThreadTest flakiness

Sometimes getVisibleIDs() method returns a null reference which might happend
because of inaccurate concurrent access. This change attempts to fix this
ICUServiceThreadTest flakiness.
This commit is contained in:
Victor Chang 2023-10-06 10:28:48 +01:00 committed by Markus Scherer
parent aff1bbaa14
commit 9e6173fcef

View file

@ -592,13 +592,17 @@ public class ICUService extends ICUNotifier {
Factory f = lIter.previous();
f.updateVisibleIDs(mutableMap);
}
this.idcache = Collections.unmodifiableMap(mutableMap);
// Capture the return value in a local variable.
// Avoids returning an idcache value changed by another thread (could be null after clearCaches()).
Map<String, Factory> result = Collections.unmodifiableMap(mutableMap);
this.idcache = result;
return result;
} finally {
factoryLock.releaseRead();
}
}
return idcache;
}
return idcache;
}
private Map<String, Factory> idcache;