From 8e0d43dda7724d8f7e33022789622bb452c15a9a Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Tue, 10 Aug 2021 14:49:26 +0200 Subject: [PATCH] docs/api: add node about concurrency on /system/df endpoint Commit 135cec5d4dd31bb1ce87432c119bb6160d45747c 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 --- docs/api/version-history.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/api/version-history.md b/docs/api/version-history.md index a36764d2de..baf90efda2 100644 --- a/docs/api/version-history.md +++ b/docs/api/version-history.md @@ -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