From e1bb7166ff1b36a906ab03c15b5c203675e485d3 Mon Sep 17 00:00:00 2001 From: MD Ashique Date: Thu, 9 Mar 2023 15:04:52 +0530 Subject: [PATCH] changing port number to avoid conflict Signed-off-by: MD Ashique --- .github/workflows/validate_go_quickstarts.yaml | 2 +- pub_sub/go/http/order-processor/app.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate_go_quickstarts.yaml b/.github/workflows/validate_go_quickstarts.yaml index dd9a1d14..f0b69509 100644 --- a/.github/workflows/validate_go_quickstarts.yaml +++ b/.github/workflows/validate_go_quickstarts.yaml @@ -40,7 +40,7 @@ jobs: KIND_IMAGE_SHA: sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6 strategy: matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest] fail-fast: false steps: - name: Check out code diff --git a/pub_sub/go/http/order-processor/app.go b/pub_sub/go/http/order-processor/app.go index 519dadb4..709357d9 100644 --- a/pub_sub/go/http/order-processor/app.go +++ b/pub_sub/go/http/order-processor/app.go @@ -63,7 +63,7 @@ func postOrder(w http.ResponseWriter, r *http.Request) { func main() { appPort := os.Getenv("APP_PORT") if appPort == "" { - appPort = "6001" + appPort = "6002" } r := mux.NewRouter()