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

[lucene-solr] branch branch_8_4 updated: SOLR-14087: Changing the filestore dir name back to filestore from .filestore

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

ishan 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 a433876  SOLR-14087: Changing the filestore dir name back to filestore from .filestore
a433876 is described below

commit a4338769811ad645f488e3aeb15765e32910f3e2
Author: Ishan Chattopadhyaya <is...@apache.org>
AuthorDate: Mon Dec 16 18:18:53 2019 +0530

    SOLR-14087: Changing the filestore dir name back to filestore from .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 45cb01f..543b079 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;