We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b97d68f commit 578264eCopy full SHA for 578264e
examples/error_handling/README.md
@@ -38,7 +38,7 @@ timeout_seconds: 5
38
-->
39
40
```bash
41
-dapr run -- python3 error_handling.py
+dapr run --resources-path components -- python3 error_handling.py
42
```
43
<!-- END_STEP -->
44
examples/error_handling/components/state_redis.yaml
@@ -0,0 +1,15 @@
1
+apiVersion: dapr.io/v1alpha1
2
+kind: Component
3
+metadata:
4
+ name: statestore
5
+spec:
6
+ type: state.redis
7
+ version: v1
8
+ initTimeout: 1m
9
+ metadata:
10
+ - name: redisHost
11
+ value: localhost:6379
12
+ - name: redisPassword
13
+ value: ""
14
+ - name: actorStateStore
15
+ value: "true"
0 commit comments