SOLR-5491: Testing for extra properties should use startsWith rather than indexOf

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1544518 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erick Erickson 2013-11-22 13:00:20 +00:00
parent 95b973d613
commit 482de5a9f0
2 changed files with 2 additions and 2 deletions

View File

@ -1309,7 +1309,7 @@ public class OverseerCollectionProcessor implements Runnable, ClosableThread {
private void addPropertyParams(ZkNodeProps message, ModifiableSolrParams params) {
// Now add the property.key=value pairs
for (String key : message.keySet()) {
if (key.indexOf(COLL_PROP_PREFIX) != -1) {
if (key.startsWith(COLL_PROP_PREFIX)) {
params.set(key, message.getStr(key));
}
}

View File

@ -379,7 +379,7 @@ public class CollectionsHandler extends RequestHandlerBase {
Iterator<String> iter = params.getParameterNamesIterator();
while (iter.hasNext()) {
String param = iter.next();
if (param.indexOf(OverseerCollectionProcessor.COLL_PROP_PREFIX) != -1) {
if (param.startsWith(OverseerCollectionProcessor.COLL_PROP_PREFIX)) {
props.put(param, params.get(param));
}
}