Repository: incubator-rya Updated Branches: refs/heads/master 3b9fb100c -> 591675e07
Modify spring-mongodb.xml to pass conf as a constructor-arg as there is no null constructor for MongoDBRyaDAO. Project: http://git-wip-us.apache.org/repos/asf/incubator-rya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-rya/commit/88110d6f Tree: http://git-wip-us.apache.org/repos/asf/incubator-rya/tree/88110d6f Diff: http://git-wip-us.apache.org/repos/asf/incubator-rya/diff/88110d6f Branch: refs/heads/master Commit: 88110d6f59b91eb61399e3066a3aaf3b1a340b1d Parents: 3b9fb10 Author: lynne_lawrence <[email protected]> Authored: Mon Dec 19 12:32:58 2016 -0500 Committer: pujav65 <[email protected]> Committed: Tue Jan 3 15:09:00 2017 -0500 ---------------------------------------------------------------------- web/web.rya/src/main/webapp/WEB-INF/spring/spring-mongodb.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-rya/blob/88110d6f/web/web.rya/src/main/webapp/WEB-INF/spring/spring-mongodb.xml ---------------------------------------------------------------------- diff --git a/web/web.rya/src/main/webapp/WEB-INF/spring/spring-mongodb.xml b/web/web.rya/src/main/webapp/WEB-INF/spring/spring-mongodb.xml index 5891cee..e99ec5f 100644 --- a/web/web.rya/src/main/webapp/WEB-INF/spring/spring-mongodb.xml +++ b/web/web.rya/src/main/webapp/WEB-INF/spring/spring-mongodb.xml @@ -38,6 +38,6 @@ under the License. </bean> <bean id="ryaDAO" class="org.apache.rya.mongodb.MongoDBRyaDAO" init-method="init" destroy-method="destroy"> - <property name="conf" ref="conf"/> + <constructor-arg ref="conf"/> </bean> </beans>
