From 7e810b12baa58afa9afb1fc166296ffb3342a133 Mon Sep 17 00:00:00 2001 From: jholdstock Date: Wed, 20 Sep 2023 09:46:15 +0100 Subject: [PATCH] docs: Simplify curl example for status endpoint. When invoked with -v, curl actually outputs a message to indicate that this extra param is unnecessary: "Note: Unnecessary use of -X or --request, GET is already inferred." --- docs/deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deployment.md b/docs/deployment.md index ee08a14..335d568 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -157,7 +157,7 @@ configuration. A 200 HTTP status will be returned if the VSP seems healthy, or a 500 status will be used to indicate something is wrong. ```bash -$ curl --user admin:12345 --request GET http://localhost:8800/admin/status +$ curl --user admin:12345 http://localhost:8800/admin/status ``` ```json