SOLR-8625: SQL: Wrong error msg if stmt param is missing

This commit is contained in:
jbernste 2016-02-01 16:52:01 -05:00
parent edf665988d
commit c136bd7dc7
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ public class SQLHandler extends RequestHandlerBase implements SolrCoreAware {
try { try {
if(sql == null) { if(sql == null) {
throw new Exception("sql parameter cannot be null"); throw new Exception("stmt parameter cannot be null");
} }
context.setSolrClientCache(StreamHandler.clientCache); context.setSolrClientCache(StreamHandler.clientCache);