mirror of https://github.com/dapr/quickstarts.git
changing port number to avoid conflict
Signed-off-by: MD Ashique <noorani.ashique5@gmail.com>
This commit is contained in:
parent
d7159a274d
commit
e1bb7166ff
|
|
@ -40,7 +40,7 @@ jobs:
|
||||||
KIND_IMAGE_SHA: sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6
|
KIND_IMAGE_SHA: sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest]
|
os: [ubuntu-latest]
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
steps:
|
steps:
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,7 @@ func postOrder(w http.ResponseWriter, r *http.Request) {
|
||||||
func main() {
|
func main() {
|
||||||
appPort := os.Getenv("APP_PORT")
|
appPort := os.Getenv("APP_PORT")
|
||||||
if appPort == "" {
|
if appPort == "" {
|
||||||
appPort = "6001"
|
appPort = "6002"
|
||||||
}
|
}
|
||||||
|
|
||||||
r := mux.NewRouter()
|
r := mux.NewRouter()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue