We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ac3c97 commit b6faf2eCopy full SHA for b6faf2e
src/main/java/org/jlab/srm/business/session/ComponentFacade.java
@@ -429,7 +429,7 @@ public List<Component> findWithoutSignoff(
429
filters.add(cb.equal(root.<BigInteger>get("system").get("systemId"), systemId));
430
}
431
if (regionIdArray != null && regionIdArray.length > 0) {
432
- filters.add(root.<BigInteger>get("region").in(Arrays.asList(regionIdArray)));
+ filters.add(root.<BigInteger>get("region").get("regionId").in(Arrays.asList(regionIdArray)));
433
434
if (groupId != null && statusIdArray != null && statusIdArray.length > 0) {
435
Subquery<BigInteger> subquery = cq.subquery(BigInteger.class);
0 commit comments