I have installed dapr self-hosted. When running the actor example in dotnet, I encountered an error when running the myactor client. The error message asked if I had set - name: actorStateStore value: "true" in my state store component file.
~/.dapr$ tree
.
├── bin
│ ├── daprd
│ └── placement
├── components
│ └── statestore.yaml
└── config.yaml
and statestore.yaml :
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: statestore
namespace: default
spec:
type: state.redis
version: v1
metadata:
@ypuQAQ Can you provide a more complete repro? Which sample are you running, how did you start it and Dapr, can you provide logs (especially with --log-level debug for the Dapr runtime), etc.?
Ask your question here
I have installed dapr self-hosted. When running the actor example in dotnet, I encountered an error when running the myactor client. The error message asked if I had set - name: actorStateStore value: "true" in my state store component file. ~/.dapr$ tree . ├── bin │ ├── daprd │ └── placement ├── components │ └── statestore.yaml └── config.yaml
and statestore.yaml : apiVersion: dapr.io/v1alpha1 kind: Component metadata: name: statestore namespace: default spec: type: state.redis version: v1 metadata: