From 9d13f82c9d6ad8425e7fc550d44b692dfcb48622 Mon Sep 17 00:00:00 2001 From: faizanfirdousi Date: Fri, 18 Sep 2026 11:36:53 +0530 Subject: [PATCH] docs: update postgres host line reference to line 47 in echo quickstart Signed-off-by: faizanfirdousi --- versioned_docs/version-4.0.0/quickstart/samples-echo.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/versioned_docs/version-4.0.0/quickstart/samples-echo.md b/versioned_docs/version-4.0.0/quickstart/samples-echo.md index 44f755860..43190333a 100644 --- a/versioned_docs/version-4.0.0/quickstart/samples-echo.md +++ b/versioned_docs/version-4.0.0/quickstart/samples-echo.md @@ -72,7 +72,7 @@ git clone https://github.com/keploy/samples-go.git && cd samples-go/echo-sql go mod download ``` -#### First things first, update the postgres host on line 41 in main.go to postgres from localhost. +#### First things first, update the postgres host on line 47 in main.go to postgres from localhost. We will be using Docker compose to run the application as well as Postgres @@ -172,7 +172,7 @@ Using the docker-compose file we will start our Postgres instance:- docker-compose up postgres ``` -> **Since we are using docker to run the application, we need to update the `postgres` host on line 41 in `main.go`, update the host to `localhost`.** +> **Since we are using docker to run the application, we need to update the `postgres` host on line 47 in `main.go`, update the host to `localhost`.** Now, we will create the binary of our application:-