Skip to content

Commit d876aa7

Browse files
fixes missing state store in test (dapr#759)
Signed-off-by: Elena Kolevska <elena@kolevska.com>
1 parent ef73085 commit d876aa7

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

examples/error_handling/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ timeout_seconds: 5
3838
-->
3939

4040
```bash
41-
dapr run -- python3 error_handling.py
41+
dapr run --resources-path components -- python3 error_handling.py
4242
```
4343
<!-- END_STEP -->
4444

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)