Hi,
I'm facing a problem when I start my dotnet application with a secret store component thanks to the ressources-path argument. Locally, this secrets store is a simple json file with only one key for the moment.
Randomly, my application cannot connect to this secret store component at Startup. It's like if dapr component and dotnet application were launched in parallel and everything is working ONLY if dapr starts faster. Is there a way to make dotnet wait for dapr components to be fully loaded before starting ?
The command I run is as simple as :
dapr run --app-id my-app --resource-path ./Dapr -- dotnet run
Thanks in advance !