Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setting version for kafka #939

Merged
merged 2 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pub_sub/java/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ name: Run multi app run template
expected_stdout_lines:
- 'Started Dapr with app id "order-processor-sdk"'
- 'Started Dapr with app id "checkout-sdk"'
- 'Published data: 10'
- 'Subscriber received: 10'
- 'Published data: 2'
- 'Subscriber received: 2'
expected_stderr_lines:
output_match_mode: substring
match_order: none
Expand Down
4 changes: 2 additions & 2 deletions service_invocation/csharp/http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ expected_stdout_lines:
- 'Validating config and starting app "checkout"'
- 'Started Dapr with app id "checkout"'
- 'Writing log files to directory'
- '== APP - order-processor == Order received : Order { orderId = 10 }'
- '== APP - checkout == Order passed: Order { OrderId = 10 }'
- '== APP - order-processor == Order received : Order { orderId = 2 }'
- '== APP - checkout == Order passed: Order { OrderId = 2 }'
expected_stderr_lines:
output_match_mode: substring
match_order: none
Expand Down
2 changes: 1 addition & 1 deletion tutorials/bindings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ kubectl create ns kafka
```

```bash
helm install dapr-kafka bitnami/kafka --wait --namespace kafka -f ./kafka-non-persistence.yaml
helm install dapr-kafka bitnami/kafka --version 23.0.7 --wait --namespace kafka --timeout 10m0s -f ./kafka-non-persistence.yaml
```

<!-- END_STEP -->
Expand Down
Loading