You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2019/12/16 04:50:13 UTC

[lucene-solr] branch branch_8_4 updated: SOLR-14087: changed the filestore location to .filestore instead of $filestore

This is an automated email from the ASF dual-hosted git repository.

noble pushed a commit to branch branch_8_4
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8_4 by this push:
     new 6aa1276  SOLR-14087: changed the filestore location to .filestore instead of $filestore
6aa1276 is described below

commit 6aa1276d517d034ed08a57caa1e513dba57f30e2
Author: noble <no...@apache.org>
AuthorDate: Mon Dec 16 15:49:54 2019 +1100

    SOLR-14087: changed the filestore location to .filestore instead of $filestore
---
 solr/core/src/java/org/apache/solr/filestore/PackageStoreAPI.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/java/org/apache/solr/filestore/PackageStoreAPI.java b/solr/core/src/java/org/apache/solr/filestore/PackageStoreAPI.java
index 5c09d5f..45cb01f 100644
--- a/solr/core/src/java/org/apache/solr/filestore/PackageStoreAPI.java
+++ b/solr/core/src/java/org/apache/solr/filestore/PackageStoreAPI.java
@@ -65,7 +65,7 @@ import static org.apache.solr.handler.ReplicationHandler.FILE_STREAM;
 
 public class PackageStoreAPI {
   private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
-  public static final String PACKAGESTORE_DIRECTORY = "$filestore";
+  public static final String PACKAGESTORE_DIRECTORY = ".filestore";
 
 
   private final CoreContainer coreContainer;