Skip to content

Commit 445ab2a

Browse files
n.kloeffeldkd-kaehm
authored andcommitted
[BUGFIX] Fix property names
1 parent 79f3255 commit 445ab2a

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
@@ -476,8 +476,8 @@
476476
<str name="hl.bs.type">SENTENCE</str>
477477
<!-- language and country are used when constructing Locale object. -->
478478
<!-- And the Locale object will be used when getting instance of BreakIterator -->
479-
<str name="hl.bs.language">${solr.core.langcode}</str>
480-
<str name="hl.bs.country">${solr.core.country}</str>
479+
<str name="hl.bs.language">${hl.bs.language}</str>
480+
<str name="hl.bs.country">${hl.bs.country}</str>
481481
</lst>
482482
</boundaryScanner>
483483
</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)