mirror of https://github.com/dapr/docs.git
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:
parent
d0c107eb8a
commit
332d2a5af3
|
@ -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`.
|
||||
|
|
Loading…
Reference in New Issue