This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.jcr.davex-1.1.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-davex.git
commit 1d4deb3386a1b481d26e6802a62fc6a0bc9b80dd Author: Justin Edelson <[email protected]> AuthorDate: Sat Jan 21 00:19:01 2012 +0000 SLING-2215 - removing init properties to set temp directory; letting JR do the right thing by default. Thanks to Jukka Zitting for the patch! git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/davex@1234217 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java b/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java index 28d5cda..d09bc3b 100644 --- a/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java +++ b/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java @@ -124,10 +124,6 @@ public class SlingDavExServlet extends JcrRemotingServlet { // prefix to the servlet initProps.put(INIT_PARAM_RESOURCE_PATH_PREFIX, davRoot); - // put the tmp files into Sling home -- or configurable ??? - initProps.put(INIT_PARAM_HOME, slingSettings.getSlingHomePath() + "/jackrabbit"); - initProps.put(INIT_PARAM_TMP_DIRECTORY, "tmp"); - // disable CSRF checks for now (should be handled by Sling) initProps.put(INIT_PARAM_CSRF_PROTECTION, CSRFUtil.DISABLED); -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
