Skip to content

Commit

Permalink
Fix ambiguity in solr documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
manisandro committed Feb 13, 2025
1 parent 032c0f7 commit 55d964d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/topics/Search.md
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ In the `volumes/solr/configsets/gdi/conf/solrconfig.xml` file you have to look f
`<!-- SearchHandler` and add the following configuration

```xml
<requestHandler name="/FACET_NAME" class="solr.DataImportHandler">
<requestHandler name="/CONFIG_NAME" class="solr.DataImportHandler">
<lst name="defaults">
<str name="config">NAME_OF_THE_CONFIGURATION_FILE.xml</str>
</lst>
Expand All @@ -433,7 +433,7 @@ Finally, the `solr` index has to be generated:
```
rm -rf volumes/solr/data/*
docker compose restart qwc-solr
curl 'http://localhost:8983/solr/gdi/FACET_NAME?command=full-import'
curl 'http://localhost:8983/solr/gdi/CONFIG_NAME?command=full-import'
```


Expand Down

0 comments on commit 55d964d

Please sign in to comment.