docs/api: add node about concurrency on /system/df endpoint

Commit 135cec5d4d added support for
calling the /system/df endpoint concurrently.

This patch adds a note about this enhancement to the API changes.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2021-08-10 14:49:26 +02:00
parent b88acf7a7a
commit 8e0d43dda7
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 6 additions and 0 deletions

View File

@ -28,6 +28,12 @@ keywords: "API, Docker, rcli, REST, documentation"
computes and returns data only for the specified object type.
The parameter can be specified multiple times to select several object types.
Supported values are: `container`, `image`, `volume`, `build-cache`.
* `GET /system/df` can now be used concurrently. If a request is made while a
previous request is still being processed, the request will receive the result
of the already running calculation, once completed. Previously, an error
(`a disk usage operation is already running`) would be returned in this
situation. This change is not versioned, and affects all API versions if the
daemon has this patch.
## v1.41 API changes