From df77e5def6656bfa1e63d8eb669f1dbe9b080c5c Mon Sep 17 00:00:00 2001 From: Brian Long Date: Fri, 3 Jun 2022 13:17:34 -0400 Subject: [PATCH] added shard IDs to created shard --- solr-create.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr-create.sh b/solr-create.sh index 47ab8fc..af701f1 100755 --- a/solr-create.sh +++ b/solr-create.sh @@ -23,7 +23,7 @@ if [[ ! -z "$ARG_SOLR_SHARD_IDS" ]]; then fi if [[ ! -z "$ARG_SOLR_SHARD_RANGE" ]]; then - SOLR_EXTRA="&property.shard.range=$ARG_SOLR_SHARD_RANGE" + SOLR_EXTRA="&property.shard.range=$ARG_SOLR_SHARD_RANGE&property.shard.instance=$ARG_SOLR_SHARD_IDS" fi echo "Creating a shard core in the Solr instance ..."