From 17dd93c927ca0b415ce23d0d3b64df993a637f45 Mon Sep 17 00:00:00 2001 From: Maximilian Brodhun <brodhun@sub.uni-goettingen.de> Date: Fri, 20 Sep 2019 11:30:49 +0200 Subject: [PATCH] correction in beans.xml constructor arguments for ElasticSearchClient --- oaipmh-webapp/src/main/webapp/WEB-INF/beans.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oaipmh-webapp/src/main/webapp/WEB-INF/beans.xml b/oaipmh-webapp/src/main/webapp/WEB-INF/beans.xml index 58fc35df..09c3b77d 100644 --- a/oaipmh-webapp/src/main/webapp/WEB-INF/beans.xml +++ b/oaipmh-webapp/src/main/webapp/WEB-INF/beans.xml @@ -32,7 +32,7 @@ <bean id="ElasticSearchClient" class="info.textgrid.middleware.OAI_ESClient"> <constructor-arg index="0" value="${elasticSearch.url}" /> <constructor-arg index="1" value="${elasticSearch.port}" /> - <constructor-arg index="2" value="${elasticSearch.clusterName}" /> + <constructor-arg index="2" value="${elasticSearch.itemLimit}" /> <property name="esIndex" value="${elasticSearch.index}" /> <property name="esType" value="${elasticSearch.type}" /> </bean> -- GitLab