fixed caching issue with client connections

This commit is contained in:
anhefti 2020-11-17 09:13:22 +01:00
parent 84d32393fb
commit e3a331196c
No known key found for this signature in database
GPG key ID: E9AD9471B6BC114D

View file

@ -89,6 +89,8 @@ public interface ClientConnectionDAO extends
Result<ClientConnection> createNew(ClientConnection data);
@Override
// TODO check if it is possible to remove with examId
@CacheEvict(cacheNames = CONNECTION_TOKENS_CACHE, allEntries = true)
Result<ClientConnection> save(ClientConnection data);
@CacheEvict(