Skip to content

Commit

Permalink
Solr error should not be fatal.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonhildebrand committed Sep 20, 2022
1 parent 27d3e3d commit 4aaffc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/rootfs/etc/cont-init.d/04-custom-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ function main {
# to be up and running before they can complete.
wait_for_required_services "${site}"
# Create missing solr cores.
create_solr_core_with_default_config "${site}"
create_solr_core_with_default_config "${site}" || echo -e "\n\nERROR: SOLR was not initialized. Check the logs above for more details.\n\n"

# Create namespace assumed one per site.
create_blazegraph_namespace_with_default_properties "${site}"
# Need to run migration to get expected default content, now that our required services are running.
Expand Down

0 comments on commit 4aaffc9

Please sign in to comment.