mirror of https://github.com/dapr/quickstarts.git
Changed port numbers for python pubsub examples
Signed-off-by: Amulya Varote <amulyavarote@microsoft.com>
This commit is contained in:
parent
37b6f5cfd2
commit
076362d4d4
|
@ -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 -->
|
||||
|
|
|
@ -24,4 +24,4 @@ def orders_subscriber():
|
|||
'ContentType': 'application/json'}
|
||||
|
||||
|
||||
app.run(port=5001)
|
||||
app.run(port=6001)
|
||||
|
|
|
@ -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 -->
|
||||
|
|
|
@ -26,4 +26,4 @@ def orders_subscriber():
|
|||
'ContentType': 'application/json'}
|
||||
|
||||
|
||||
app.run(port=5001)
|
||||
app.run(port=6001)
|
||||
|
|
Loading…
Reference in New Issue