Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/reference/migration/migrate_6_0/rest.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ Previously it was possible to execute `GET /_aliases,_mappings` or `GET
in order to retrieve multiple types of information about one or more indices.
This comma-separation for retrieving multiple pieces of information has been
removed.. `GET /_all` can be used to retrieve all aliases, settings, and
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: maybe also remove one of the double full-stops while changing this file

mappings for all indices. In order to retrieve only the mappings for an index,
`GET /myindex/_mappings` (or `_aliases`, or `_settings`).
mappings for all indices.

In order to retrieve only the mappings for an index,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: maybe change to singular "mapping" here as well for consistency. Maybe also add a verb (like "In order to..., use...) to make it a full sentence.

`GET /myindex/_mapping` (or `_alias` for a list of aliases, or `_settings` for the settings).

==== Requests to existing endpoints with incorrect HTTP verb now return 405 responses

Expand Down