From e5ca1892f5648aa8b4a60e683f23bf7de4339baa Mon Sep 17 00:00:00 2001 From: Tanner Jones Date: Tue, 3 Oct 2023 14:24:49 -0800 Subject: [PATCH] Removed link from localhost:9200 Signed-off-by: Tanner Jones --- DEVELOPER_GUIDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index b80563942..60e0af8b4 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -73,7 +73,7 @@ docker-compose -f docker-compose.yml up This command will start the OpenSearch container using the `docker-compose.yaml` configuration file. During the build process, the necessary dependencies and files will be downloaded, which may take some time depending on your internet connection and system resources. -Once the container is built and running, you can open a web browser and navigate to http://localhost:9200 to access the OpenSearch docker container. +Once the container is built and running, you can open a web browser and navigate to localhost:9200 to access the OpenSearch docker container. In order to differentiate unit tests from integration tests, Go has a built-in mechanism for allowing you to logically separate your tests with [build tags](https://pkg.go.dev/cmd/go#hdr-Build_constraints). The build tag needs to be placed as close to the top of the file as possible, and must have a blank line beneath it. Hence, create all integration tests with build tag 'integration'.