This is an automated email from the ASF dual-hosted git repository.
zhengchenyu pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/branch-0.9 by this push:
new 88167dcfc [MINOR] fix(docs) Correct the example of decommission
interface (#1777)
88167dcfc is described below
commit 88167dcfcd2ac81fdcdd82b0bc1eb01d5aa26709
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>