From 4e1f758cf111bd0bf4a6c7c66234c1273fce1f52 Mon Sep 17 00:00:00 2001 From: Weerasak Chongnguluam Date: Sun, 30 Jul 2023 17:05:13 +0700 Subject: [PATCH] Fix mismatch port with description Signed-off-by: Weerasak Chongnguluam --- service_invocation/go/http/order-processor/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service_invocation/go/http/order-processor/app.go b/service_invocation/go/http/order-processor/app.go index 2da385e8d..073985202 100644 --- a/service_invocation/go/http/order-processor/app.go +++ b/service_invocation/go/http/order-processor/app.go @@ -28,7 +28,7 @@ func main() { // Start the server listening on port 6001 // This is a blocking call - err := http.ListenAndServe(":6006", r) + err := http.ListenAndServe(":6001", r) if err != http.ErrServerClosed { log.Println("Error starting HTTP server") }