epugh commented on a change in pull request #41: URL: https://github.com/apache/solr/pull/41#discussion_r599496557
########## File path: solr/solr-ref-guide/src/collections-api.adoc ########## @@ -126,7 +178,36 @@ http://localhost:8983/solr/admin/collections?action=REQUESTSTATUS&requestid=1004 Deletes the stored response of an already failed or completed <<Asynchronous Calls,Asynchronous Collection API>> call. -`/admin/collections?action=DELETESTATUS&requestid=_request-id_` +[.dynamic-tabs] +-- +[example.tab-pane#v1asyncdeletestatus] +==== +[.tab-label]*V1 API* + +[source,bash] +---- +http://localhost:8983/solr/admin/collections?action=DELETESTATUS&requestid=1000 + +---- +==== + +[example.tab-pane#v2asyncdeletestatus] +==== +[.tab-label]*V2 API* + +Delete a single request response: +[source,bash] +---- +curl -X DELETE http://localhost:8983/api/cluster/command-status/1000 -H 'Content-Type: application/json' +---- + +Flush out all stored completed and failed async request response: Review comment: It doesn't exist unless you want to give me a LGTM or +1 over on SOLR-15278 / #43 ;-) Good grammer catch. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
