You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"
The text was updated successfully, but these errors were encountered:
@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:
value: localhost:6379
value: ""
value: "true"
The text was updated successfully, but these errors were encountered: