[
https://issues.apache.org/jira/browse/SOLR-8712?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15157114#comment-15157114
]
Shawn Heisey commented on SOLR-8712:
------------------------------------
Properties like this have stopped working in the past. SOLR-5162 is one
example.
I think that SOLR-8336 is a possible cause of this, with this patch hunk for
CoreDescriptor.java:
{code:java}
@@ -47,8 +50,6 @@ public class CoreDescriptor {
// Properties file name constants
public static final String CORE_NAME = "name";
public static final String CORE_CONFIG = "config";
- public static final String CORE_INSTDIR = "instanceDir";
- public static final String CORE_ABS_INSTDIR = "absoluteInstDir";
public static final String CORE_DATADIR = "dataDir";
public static final String CORE_ULOGDIR = "ulogDir";
public static final String CORE_SCHEMA = "schema";
@@ -91,13 +92,12 @@ public class CoreDescriptor {
.build();
private static ImmutableList<String> requiredProperties = ImmutableList.of(
- CORE_NAME, CORE_INSTDIR, CORE_ABS_INSTDIR
+ CORE_NAME
);
public static ImmutableList<String> standardPropNames = ImmutableList.of(
CORE_NAME,
CORE_CONFIG,
- CORE_INSTDIR,
CORE_DATADIR,
CORE_ULOGDIR,
CORE_SCHEMA,
{code}
[~romseygeek], SOLR-8336 is yours. Would that cause this problem, and if so,
any thoughts about fixing it?
> Variable solr.core.instanceDir no longer resolved
> -------------------------------------------------
>
> Key: SOLR-8712
> URL: https://issues.apache.org/jira/browse/SOLR-8712
> Project: Solr
> Issue Type: Bug
> Affects Versions: 5.5
> Reporter: Kristine Jetzke
>
> In 5.4.1 standalone mode it was possible to use
> {{$\{solr.core.instanceDir\}}} in the data import config file. This property
> is no longer available in 5.5.0.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]