From 50387dae85a48434a0be1529401e825b37c71590 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 19 Aug 2024 23:44:49 +0000 Subject: [PATCH] Fixed incorrect use of single quotes in the install OpenSearch guide. (#8024) Signed-off-by: marknyny Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> (cherry picked from commit dc7ea24a6ff509dc5e6264aa7e4ad57123b42263) Signed-off-by: github-actions[bot] --- _install-and-configure/install-opensearch/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-opensearch/docker.md b/_install-and-configure/install-opensearch/docker.md index 189d647ce5..8925cb5ed8 100644 --- a/_install-and-configure/install-opensearch/docker.md +++ b/_install-and-configure/install-opensearch/docker.md @@ -106,7 +106,7 @@ Before continuing, you should verify that Docker is working correctly by deployi ``` 1. Send a request to port 9200. The default username and password are `admin`. ```bash - curl https://localhost:9200 -ku 'admin:' + curl https://localhost:9200 -ku admin: ``` {% include copy.html %}