mirror of https://github.com/apache/lucene.git
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:
parent
dc474d25cb
commit
5f5f7e7756
|
@ -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
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue