Skip to content

Commit

Permalink
fixes missing state store in test (#759)
Browse files Browse the repository at this point in the history
Signed-off-by: Elena Kolevska <elena@kolevska.com>
  • Loading branch information
elena-kolevska authored Jan 2, 2025
1 parent cbc632e commit edd2edb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/error_handling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ timeout_seconds: 5
-->

```bash
dapr run -- python3 error_handling.py
dapr run --resources-path components -- python3 error_handling.py
```
<!-- END_STEP -->

Expand Down
15 changes: 15 additions & 0 deletions examples/error_handling/components/state_redis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: statestore
spec:
type: state.redis
version: v1
initTimeout: 1m
metadata:
- name: redisHost
value: localhost:6379
- name: redisPassword
value: ""
- name: actorStateStore
value: "true"

0 comments on commit edd2edb

Please sign in to comment.