changing port number to avoid conflict

Signed-off-by: MD Ashique <noorani.ashique5@gmail.com>
This commit is contained in:
MD Ashique 2023-03-09 15:04:52 +05:30
parent d7159a274d
commit e1bb7166ff
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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()