-
Notifications
You must be signed in to change notification settings - Fork 583
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bypass JSR107 layer when creating cache cause it to be not found #2494
Comments
There has been work in this area recently... I think this might be fixed. This should get reassessed in-house and closed if it really has been fixed. |
@chrisdennis, I have validated the mentioned use case and found that issue is still there (sample JUnit is still failing) The above code is logically correct, as the cache is been created post Adding |
If a cache is created directory on the wrapped Ehcache CacheManager, the JSR107 won' see it. See this code:
However, add a
cacheManager.getCacheNames()
before callinggetCache
repairs it since it causes a cache refresh.I think it should work or at least be coherent.
The text was updated successfully, but these errors were encountered: