Fix MAX_TENANTS_QUERY constant. Signed-off-by: Stefan Behl stefan.behl@bosch-si.com

This commit is contained in:
Stefan Behl
2019-07-01 16:30:25 +02:00
parent 2e37f85c2f
commit fd9de429e6

View File

@@ -61,7 +61,7 @@ import org.springframework.validation.annotation.Validated;
public class JpaSystemManagement implements CurrentTenantCacheKeyGenerator, SystemManagement {
private static final Logger LOGGER = LoggerFactory.getLogger(JpaSystemManagement.class);
private static final int MAX_TENANTS_QUERY = 500;
private static final int MAX_TENANTS_QUERY = 1000;
@Autowired
private EntityManager entityManager;