Make port in code and npm run start:dapr match

This commit is contained in:
Paul Yuknewicz 2022-02-07 10:42:31 -08:00 committed by Artur Souza
parent a14374c633
commit a4b3b0f66c
1 changed files with 1 additions and 1 deletions

View File

@ -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);