javaswift / joss

Java library for OpenStack Storage, aka Swift
http://javaswift.org
117 stars 108 forks source link

concurrency issue with ContainerCache #163

Open codeperfector opened 5 years ago

codeperfector commented 5 years ago

This is a fix for issue #162 ContainerCache uses TreeMap which is not thread-safe. This commit uses a thread-safe ConcurrentSkipListMap instead. I also added a test that demonstrates the issue with thread-safety