Changed port numbers for python pubsub examples

Signed-off-by: Amulya Varote <amulyavarote@microsoft.com>
This commit is contained in:
Amulya Varote 2022-08-09 10:25:19 -07:00
parent 37b6f5cfd2
commit 076362d4d4
4 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ sleep: 10
```bash
dapr run --app-id order-processor --components-path ../../../components/ --app-port 5001 -- python3 app.py
dapr run --app-id order-processor --components-path ../../../components/ --app-port 6001 -- python3 app.py
```
<!-- END_STEP -->

View File

@ -24,4 +24,4 @@ def orders_subscriber():
'ContentType': 'application/json'}
app.run(port=5001)
app.run(port=6001)

View File

@ -42,7 +42,7 @@ sleep: 10
-->
```bash
dapr run --app-id order-processor --components-path ../../../components/ --app-port 5001 -- uvicorn app:app --port 5001
dapr run --app-id order-processor --components-path ../../../components/ --app-port 6001 -- uvicorn app:app --port 6001
```
<!-- END_STEP -->

View File

@ -26,4 +26,4 @@ def orders_subscriber():
'ContentType': 'application/json'}
app.run(port=5001)
app.run(port=6001)