I have a .solr_wrapper file that specifies solr version 6.3.0.
If I run bundle exec solr_wrapper, as expected I get:
Starting Solr 6.3.0 on port 8983 ..
However, if I use the solr_wrapper rake tasks, (require 'solr_wrapper/rake_task'), and run bundle exec solr:start, it seems to ignore the .solr_wrapper file, I get:
Starting solr at http://127.0.0.1:8983/solr/
solr-8.0.0.zip: |================ | 70% ( ETA: 00:00:06 )
Is this a bug, should the rake task be using the .solr_wrapper config file too?
If so, I am happy to prepare and submit a PR, feedback welcome.
I have a
.solr_wrapperfile that specifies solr version 6.3.0.If I run
bundle exec solr_wrapper, as expected I get:However, if I use the solr_wrapper rake tasks, (
require 'solr_wrapper/rake_task'), and runbundle exec solr:start, it seems to ignore the.solr_wrapperfile, I get:Is this a bug, should the rake task be using the
.solr_wrapperconfig file too?If so, I am happy to prepare and submit a PR, feedback welcome.