Skip to content

Commit 7c3b3b9

Browse files
author
n.kloeffel
committed
[BUGFIX] Fix property names
1 parent 6b65ffa commit 7c3b3b9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Resources/Private/Solr/configsets/ext_solr_13_0_0/conf/solrconfig.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -485,8 +485,8 @@
485485
<str name="hl.bs.type">SENTENCE</str>
486486
<!-- language and country are used when constructing Locale object. -->
487487
<!-- And the Locale object will be used when getting instance of BreakIterator -->
488-
<str name="hl.bs.language">${solr.core.langcode}</str>
489-
<str name="hl.bs.country">${solr.core.country}</str>
488+
<str name="hl.bs.language">${hl.bs.language}</str>
489+
<str name="hl.bs.country">${hl.bs.country}</str>
490490
</lst>
491491
</boundaryScanner>
492492
</highlighting>

Resources/Private/Solr/cores/english/core.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ configSet=ext_solr_13_0_0
22
schema=english/schema.xml
33
name=core_en
44
dataDir=../../data/english
5-
langcode=en
6-
country=US
5+
hl.bs.language=en
6+
hl.bs.country=US

Resources/Private/Solr/cores/german/core.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ configSet=ext_solr_13_0_0
22
schema=german/schema.xml
33
name=core_de
44
dataDir=../../data/german
5-
langcode=de
6-
country=DE
5+
hl.bs.language=de
6+
hl.bs.country=DE

0 commit comments

Comments
 (0)