Updating the app port to 5001

This commit is contained in:
Aman Bhardwaj 2019-11-18 14:03:43 -08:00 committed by GitHub
parent 0092200d18
commit 2a2ba8acbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -29,10 +29,10 @@ Actor --- IDemoActor
To run the actor service locally run this comment in DemoActor directory: To run the actor service locally run this comment in DemoActor directory:
```sh ```sh
dapr run --port 3500 --app-id demo_actor --app-port 5000 dotnet run dapr run --port 3500 --app-id demo_actor --app-port 5001 dotnet run
``` ```
The actor service will listen on port 5000 for HTTP. The actor service will listen on port 5001 for HTTP.
### Making Client calls. ### Making Client calls.
Actor Client project shows how to make client calls for actor using Remoting which provides a strongly typed invocation experience. Actor Client project shows how to make client calls for actor using Remoting which provides a strongly typed invocation experience.