SOLR-10411: v2 Collection API modify command specification's replicationFactor property is incorrectly typed as string, should be integer

This commit is contained in:
Cao Manh Dat 2017-05-12 13:38:56 +07:00
parent 5f51228a01
commit 904df0eb61
2 changed files with 4 additions and 1 deletions

View File

@ -102,6 +102,9 @@ Bug Fixes
* SOLR-10408: v2 API introspect should return useful message for non-existent command (Cao Manh Dat)
* SOLR-10411: v2 Collection API "modify" command specification's replicationFactor property is incorrectly typed as string,
should be integer (Cao Manh Dat)
Optimizations
----------------------

View File

@ -24,7 +24,7 @@
"description": "When set to true, enables auto addition of replicas on shared file systems (such as HDFS). See https://cwiki.apache.org/confluence/display/solr/Running+Solr+on+HDFS for more details on settings and overrides."
},
"replicationFactor": {
"type": "string",
"type": "integer",
"description": "The number of replicas to be created for each shard. Replicas are physical copies of each shard, acting as failover for the shard. Note that changing this value on an existing collection does not automatically add more replicas to the collection. However, it will allow add-replica commands to succeed."
},
"maxShardsPerNode": {