Skip to content

Commit

Permalink
stop redirecting output to /dev/null when creating solr core
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdentremont authored Jul 11, 2024
1 parent 3e2d454 commit 5bec024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drupal/rootfs/etc/islandora/utilities.sh
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ function create_solr_core {
# Require a running Solr to create a core.
wait_for_service "${site}" "SOLR"

curl -s "http://${host}:${port}/solr/admin/cores?action=CREATE&name=${core}&instanceDir=${core}&config=solrconfig.xml&dataDir=data" &>/dev/null
curl -s "http://${host}:${port}/solr/admin/cores?action=CREATE&name=${core}&instanceDir=${core}&config=solrconfig.xml&dataDir=data"
}

# Generate solr config and create a core for it.
Expand Down

0 comments on commit 5bec024

Please sign in to comment.