Hi there! While I was working on alias management in SOLR, I noticed that the V2 of alias deletion [1] is not allowed in Solr 9.4, and that there seems to be a missing endpoint causing 405s with every attempt using the following request:
List aliases: $ curl -i -L -X GET 'http://localhost:8983/api/aliases' {"responseHeader":{"status":0,"QTime":5},"aliases":{"my-alias":"my-cloud-collection"},"properties":{}} Delete V2 alias 'my-alias': $ curl -i -L -X DELETE 'http://localhost:8983/api/aliases/my-alias' HTTP/1.1 405 Method Not Allowed However, its V1 API works fine: $ curl -i -L -X DELETE ' http://localhost:8983/solr/admin/collections?action=DELETEALIAS&name=my-alias ' {"responseHeader":{"status":0,"QTime":5}} If I'm not mistaken according to the docs, do you think this might be related to these improvements: [2]? Thanks, Hakan 1. https://solr.apache.org/guide/solr/latest/deployment-guide/alias-management.html#deletealias 2. https://issues.apache.org/jira/browse/SOLR-16393