mirror of https://github.com/dapr/quickstarts.git
24 lines
594 B
Python
24 lines
594 B
Python
# ------------------------------------------------------------
|
|
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
# ------------------------------------------------------------
|
|
|
|
import time
|
|
import requests
|
|
import os
|
|
|
|
dapr_port = os.getenv("DAPR_HTTP_PORT", 3500)
|
|
dapr_url = "http://localhost:{}/v1.0/invoke/nodeapp/method/neworder".format(dapr_port)
|
|
|
|
n = 0
|
|
while True:
|
|
n += 1
|
|
message = {"data": {"orderId": n}}
|
|
|
|
try:
|
|
response = requests.post(dapr_url, json=message, timeout=5)
|
|
except Exception as e:
|
|
print(e, flush=True)
|
|
|
|
time.sleep(1)
|