markheath / globoticket-dapr

A simple Dapr demo microservices application
59 stars 38 forks source link

upgrade to Dapr 1.11 #5

Closed markheath closed 1 year ago

thoefkens commented 1 year ago

Hi @markheath, I have just cloned your v1.11 upgrade version of the code, and when I run dapr run --dapr-http-port 3500 in standalone mode, I cannot call the dapr endpoints. Instead this is the error (on MacOS Ventura):

⚠  Dapr sidecar is not listening on HTTP port: dial tcp 127.0.0.1:3500: connect: operation timed out
ℹ️  Checking if Dapr sidecar is listening on GRPC port 54095
⚠  Dapr sidecar is not listening on GRPC port: dial tcp 127.0.0.1:54095: connect: operation timed out
⚠  Dapr sidecar might not be responding.

Any ideas why that may be occurring?

Thanks! Thomas

markheath commented 1 year ago

Not sure why it's not working for you. Are you using the full commands as shown in the start-self-hosted.ps1 files in each microservice folder?

thoefkens commented 1 year ago

Hey @markheath , thanks for getting back to me.. I found the source of the problem.. a VPN connection was still active, causing the issue... now when running dapr run --dapr-http-port 3500 it comes up fine and reports "You're up and running! Dapr logs will appear here." immediately. Thanks