You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2015/01/08 17:56:25 UTC

svn commit: r1650328 - /lucene/dev/trunk/solr/server/contexts/solr-jetty-context.xml

Author: sarowe
Date: Thu Jan  8 16:56:25 2015
New Revision: 1650328

URL: http://svn.apache.org/r1650328
Log:
SOLR-4839: Set Jetty 9's new option to persist its temp directory (persistTempDirectory) - where the war is exploded - to true, so that the server/solr-webapp/ directory doesn't get deleted when Jetty shuts down gracefully

Modified:
    lucene/dev/trunk/solr/server/contexts/solr-jetty-context.xml

Modified: lucene/dev/trunk/solr/server/contexts/solr-jetty-context.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/server/contexts/solr-jetty-context.xml?rev=1650328&r1=1650327&r2=1650328&view=diff
==============================================================================
--- lucene/dev/trunk/solr/server/contexts/solr-jetty-context.xml (original)
+++ lucene/dev/trunk/solr/server/contexts/solr-jetty-context.xml Thu Jan  8 16:56:25 2015
@@ -5,4 +5,5 @@
   <Set name="war"><Property name="jetty.base"/>/webapps/solr.war</Set>
   <Set name="defaultsDescriptor"><Property name="jetty.base"/>/etc/webdefault.xml</Set>
   <Set name="tempDirectory"><Property name="jetty.base" default="."/>/solr-webapp</Set>
+  <Set name="persistTempDirectory">true</Set>
 </Configure>