Skip to content

Commit 578264e

Browse files
fixes missing state store in test
Signed-off-by: Elena Kolevska <[email protected]>
1 parent b97d68f commit 578264e

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

examples/error_handling/README.md

+1-1
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

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)