Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start solr when indexing fixtures using the colligo:install task. #26

Merged
merged 1 commit into from
Feb 15, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/tasks/colligo.rake
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ namespace :colligo do
Rake::Task['db:migrate'].invoke
Rake::Task['colligo:download_and_unzip_jetty'].invoke
Rake::Task['colligo:copy_solr_configs'].invoke
Rake::Task['colligo:fixtures'].invoke
Jettywrapper.wrap(Jettywrapper.load_config) do
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ugh. I hope getting off jettywrapper is in the near future.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, we definitely discussed getting dependencies up to our latest standards. This is just trying to fix the fact that the install task throws an error.

Rake::Task['colligo:fixtures'].invoke
end
end
desc 'Download and unzip jetty'
task :download_and_unzip_jetty do
Expand Down