We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb1b9ce commit 6d2fa2cCopy full SHA for 6d2fa2c
configuration/javascript/sdk/order-processor/index.js
@@ -8,6 +8,10 @@ const daprPort = process.env.DAPR_GRPC_PORT ?? 3500;
8
const DAPR_CONFIGURATION_STORE = "configstore";
9
const CONFIGURATION_ITEMS = ["orderId1", "orderId2"];
10
11
+async function sleep(ms) {
12
+ return new Promise(resolve => setTimeout(resolve, ms));
13
+}
14
+
15
async function main() {
16
const client = new DaprClient({daprHost, daprPort, communicationProtocol});
17
// await client.health.isHealthy();
0 commit comments