We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cddd0f commit a80accdCopy full SHA for a80accd
examples/pubsub/README.md
@@ -41,7 +41,8 @@ By default, the example uses HTTP. To use gRPC instead:
41
daprPort: process.env.DAPR_GRPC_PORT,
42
},
43
});
44
- const client = new DaprClient(daprHost, process.env.DAPR_GRPC_PORT, CommunicationProtocolEnum.GRPC);
+
45
+ const client = new DaprClient({daprHost, daprPort:process.env.DAPR_GRPC_PORT, communicationProtocol:CommunicationProtocolEnum.GRPC});
46
```
47
48
- To run:
0 commit comments