Fixing parameter which should be a string plus dependencies
Closes #16649
This commit is contained in:
parent
028c3dd26e
commit
4bdf2fe21d
2 changed files with 2 additions and 2 deletions
|
@ -310,7 +310,7 @@ public class JpaUserSessionPersisterProvider implements UserSessionPersisterProv
|
||||||
return persistentUserSessions.findAny().map(userSession -> {
|
return persistentUserSessions.findAny().map(userSession -> {
|
||||||
|
|
||||||
TypedQuery<PersistentClientSessionEntity> clientSessionQuery = em.createNamedQuery("findClientSessionsByUserSession", PersistentClientSessionEntity.class);
|
TypedQuery<PersistentClientSessionEntity> clientSessionQuery = em.createNamedQuery("findClientSessionsByUserSession", PersistentClientSessionEntity.class);
|
||||||
clientSessionQuery.setParameter("userSessionId", Collections.singleton(userSessionId));
|
clientSessionQuery.setParameter("userSessionId", userSessionId);
|
||||||
clientSessionQuery.setParameter("offline", offlineStr);
|
clientSessionQuery.setParameter("offline", offlineStr);
|
||||||
|
|
||||||
Set<String> removedClientUUIDs = new HashSet<>();
|
Set<String> removedClientUUIDs = new HashSet<>();
|
||||||
|
|
|
@ -1834,7 +1834,7 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.infinispan</groupId>
|
<groupId>org.infinispan</groupId>
|
||||||
<artifactId>infinispan-core</artifactId>
|
<artifactId>infinispan-core-jakarta</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
Loading…
Reference in a new issue