1
0
mirror of https://github.com/ilri/dspace-statistics-api.git synced 2025-07-01 04:01:54 +02:00

Remove SOLR_CORE configuration variable

This parameter is not customizable. All DSpace instances use this
name for the Solr statistics core.
This commit is contained in:
2018-09-24 00:20:54 +03:00
parent 89621af85d
commit a51422273c
5 changed files with 4 additions and 9 deletions

View File

@ -2,7 +2,6 @@ import os
# Check if Solr connection information was provided in the environment
SOLR_SERVER = os.environ.get('SOLR_SERVER', 'http://localhost:8080/solr')
SOLR_CORE = os.environ.get('SOLR_CORE', 'statistics')
SQLITE_DB = os.environ.get('SQLITE_DB', 'statistics.db')