diff --git a/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md b/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md index 968657c94..0e2a7187a 100644 --- a/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md +++ b/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md @@ -56,7 +56,7 @@ pip3 install -r requirements.txt Run the `order-processor` service alongside a Dapr sidecar. ```bash -dapr run --app-port 7001 --app-id order-processor --app-protocol http --dapr-http-port 3501 -- python3 app.py +dapr run --app-port 8001 --app-id order-processor --app-protocol http --dapr-http-port 3501 -- python3 app.py ``` > **Note**: Since Python3.exe is not defined in Windows, you may need to use `python app.py` instead of `python3 app.py`. @@ -70,7 +70,7 @@ def getOrder(): 'ContentType': 'application/json'} -app.run(port=7001) +app.run(port=8001) ``` ### Step 4: Run `checkout` service @@ -221,8 +221,8 @@ let axiosConfig = { "dapr-app-id": "order-processor" } }; - const res = await axios.post(`${DAPR_HOST}:${DAPR_HTTP_PORT}/orders`, order , axiosConfig); - console.log("Order passed: " + res.config.data); +const res = await axios.post(`${DAPR_HOST}:${DAPR_HTTP_PORT}/orders`, order , axiosConfig); +console.log("Order passed: " + res.config.data); ``` ### Step 5: View the Service Invocation outputs @@ -535,13 +535,13 @@ cd service_invocation/go/http/order-processor Install the dependencies: ```bash -go build +go build app.go ``` Run the `order-processor` service alongside a Dapr sidecar. ```bash -dapr run --app-port 6001 --app-id order-processor --app-protocol http --dapr-http-port 3501 -- go run +dapr run --app-port 6001 --app-id order-processor --app-protocol http --dapr-http-port 3501 -- go run app.go ``` Each order is received via an HTTP POST request and processed by the @@ -554,6 +554,7 @@ func getOrder(w http.ResponseWriter, r *http.Request) { log.Fatal(err) } log.Printf("Order received : %s", string(data)) +} ``` ### Step 4: Run `checkout` service