Fixing parameter which should be a string plus dependencies

Closes #16649
This commit is contained in:
Alexander Schwartz 2023-01-26 18:07:49 +01:00 committed by Václav Muzikář
parent 028c3dd26e
commit 4bdf2fe21d
2 changed files with 2 additions and 2 deletions

View file

@ -310,7 +310,7 @@ public class JpaUserSessionPersisterProvider implements UserSessionPersisterProv
return persistentUserSessions.findAny().map(userSession -> {
TypedQuery<PersistentClientSessionEntity> clientSessionQuery = em.createNamedQuery("findClientSessionsByUserSession", PersistentClientSessionEntity.class);
clientSessionQuery.setParameter("userSessionId", Collections.singleton(userSessionId));
clientSessionQuery.setParameter("userSessionId", userSessionId);
clientSessionQuery.setParameter("offline", offlineStr);
Set<String> removedClientUUIDs = new HashSet<>();

View file

@ -1834,7 +1834,7 @@
</dependency>
<dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-core</artifactId>
<artifactId>infinispan-core-jakarta</artifactId>
</dependency>
<dependency>