This is an automated email from the ASF dual-hosted git repository.
xianjingfeng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 449566818 [MINOR] fix(docs) Correct the example of decommission
interface (#1777)
449566818 is described below
commit 44956681887c4b32db6da3c0acc387018950d47b
Author: xianjingfeng <[email protected]>
AuthorDate: Thu Jun 13 09:36:46 2024 +0800
[MINOR] fix(docs) Correct the example of decommission interface (#1777)
### What changes were proposed in this pull request?
Correct the example of decommission interface
### Why are the changes needed?
The document content is incorrect.
### Does this PR introduce any user-facing change?
No.
### How was this patch tested?
No need.
---
docs/coordinator_guide.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/coordinator_guide.md b/docs/coordinator_guide.md
index 11bd911b1..66a19cc09 100644
--- a/docs/coordinator_guide.md
+++ b/docs/coordinator_guide.md
@@ -181,7 +181,7 @@ AccessQuotaChecker is a checker when the number of
concurrent tasks submitted by
##### Example cURL
> ```bash
-> curl -X POST -H "Content-Type: application/json"
http://localhost:19998/api/server/decommission -d '{"serverIds:":
["127.0.0.1:19999"]}'
+> curl -X POST -H "Content-Type: application/json"
http://localhost:19998/api/server/decommission -d '{"serverIds":
["127.0.0.1-19999"]}'
> ```
</details>
@@ -219,7 +219,7 @@ AccessQuotaChecker is a checker when the number of
concurrent tasks submitted by
##### Example cURL
> ```bash
-> curl -X POST -H "Content-Type: application/json"
http://localhost:19998/api/server/cancelDecommission -d '{"serverIds:":
["127.0.0.1:19999"]}'
+> curl -X POST -H "Content-Type: application/json"
http://localhost:19998/api/server/cancelDecommission -d '{"serverIds":
["127.0.0.1-19999"]}'
> ```
</details>