mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
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:
parent
aff1bbaa14
commit
9e6173fcef
1 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue