Use correct app port from order-processor example

the app port is 6002, see here cb4463f1a1/pub_sub/python/sdk/order-processor/app.py (L8)

Signed-off-by: Worming <worming@hotmail.be>
This commit is contained in:
Worming 2023-03-09 07:25:12 +01:00 committed by GitHub
parent d0c107eb8a
commit 332d2a5af3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ pip3 install -r requirements.txt
Run the `order-processor` subscriber service alongside a Dapr sidecar.
```bash
dapr run --app-id order-processor --resources-path ../../../components/ --app-port 5001 -- python3 app.py
dapr run --app-id order-processor --resources-path ../../../components/ --app-port 6002 -- 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`.