SOLR-5301: DELETEALIAS command prints CREATEALIAS in logs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1529335 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jan Høydahl 2013-10-04 22:32:56 +00:00
parent dc474d25cb
commit 5f5f7e7756
2 changed files with 3 additions and 1 deletions

View File

@ -101,6 +101,8 @@ Bug Fixes
* SOLR-5297: Admin UI - Threads Screen missing Icon (steffkes)
* SOLR-5301: DELETEALIAS command prints CREATEALIAS in logs (janhoy)
Security
----------------------

View File

@ -262,7 +262,7 @@ public class CollectionsHandler extends RequestHandlerBase {
ZkNodeProps m = new ZkNodeProps(Overseer.QUEUE_OPERATION,
OverseerCollectionProcessor.DELETEALIAS, "name", name);
handleResponse(OverseerCollectionProcessor.CREATEALIAS, m, rsp);
handleResponse(OverseerCollectionProcessor.DELETEALIAS, m, rsp);
}
private void handleDeleteAction(SolrQueryRequest req, SolrQueryResponse rsp) throws KeeperException, InterruptedException {