Have you set the - name: actorStateStore value: "true" in your state store component file?
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:
- name: redisHost value: localhost:6379
- name: redisPassword value: ""
- name: actorStateStore value: "true"
@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.?
@ypuQAQ Is this still an issue you're experiencing and need assistance with?