Open
Description
I have
- Tested with the latest release
- Tested with the current master branch
- Searched for similar existing issues
Expected behaviour
pysolr creates a new core
Actual behaviour
pysolr does not create a core
Steps to reproduce the behaviour
- admin = pysolr.SolrCoreAdmin("http://localhost:8983/solr/admin/cores"
- admin.create("corename", "<SOLR_ROOT>/server/solr/configsets/_default/conf")
Configuration
- Operating system version: Ubuntu 20.04
- Search engine version: 8.5.1
- Python version: 3.7.3
- pysolr version: 3.9.0
Could fix it with
replaced: https://github.com/django-haystack/pysolr/blob/master/pysolr.py#L1307
resp = requests.get(url, data=safe_url_encode(params), headers=headers)
with
resp = requests.get(url, data=params, headers=headers)
Metadata
Metadata
Assignees
Labels
No labels