mirror of https://github.com/dapr/quickstarts.git
Make port in code and npm run start:dapr match
This commit is contained in:
parent
a14374c633
commit
a4b3b0f66c
|
@ -1,7 +1,7 @@
|
|||
import { DaprClient } from 'dapr-client';
|
||||
|
||||
const DAPR_HOST = process.env.DAPR_HOST || "localhost";
|
||||
const DAPR_PORT = process.env.DAPR_PORT || 3500;
|
||||
const DAPR_PORT = process.env.DAPR_PORT || 3501;
|
||||
|
||||
async function main() {
|
||||
const client = new DaprClient(DAPR_HOST, DAPR_PORT);
|
||||
|
|
Loading…
Reference in New Issue