From 6fae25a4cb9ac2fd78695b9e15134235e8408a6f Mon Sep 17 00:00:00 2001 From: Jason Hildebrand Date: Wed, 26 Jan 2022 16:31:20 -0600 Subject: [PATCH] Solr error should not be fatal. --- rootfs/etc/cont-init.d/04-custom-setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rootfs/etc/cont-init.d/04-custom-setup.sh b/rootfs/etc/cont-init.d/04-custom-setup.sh index ed42e036f4..5b3f655de7 100644 --- a/rootfs/etc/cont-init.d/04-custom-setup.sh +++ b/rootfs/etc/cont-init.d/04-custom-setup.sh @@ -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.