Skip to content

Commit

Permalink
Update to 0.6.10 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyiliev committed Apr 19, 2024
1 parent 3f03719 commit 1956d95
Show file tree
Hide file tree
Showing 8 changed files with 807 additions and 191 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
CHANGELOG
=========
## 0.1.10 - 2024-04-01
Update to Terraform Provider [0.6.10](https://github.com/MaterializeInc/terraform-provider-materialize/releases/tag/v0.6.10).

## 0.1.9 - 2024-03-29
Update to Terraform Provider [0.6.9](https://github.com/MaterializeInc/terraform-provider-materialize/releases/tag/v0.6.9).

Expand Down
2 changes: 2 additions & 0 deletions examples/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ services:
- --bootstrap-default-cluster-replica-size=3xsmall
- --bootstrap-builtin-system-cluster-replica-size=3xsmall
- --bootstrap-builtin-introspection-cluster-replica-size=3xsmall
- --bootstrap-builtin-support-cluster-replica-size=3xsmall
- --bootstrap-builtin-probe-cluster-replica-size=3xsmall
- --availability-zone=test1
- --availability-zone=test2
- --all-features
Expand Down
4 changes: 3 additions & 1 deletion examples/mocks/cloud/mock_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ func regionHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(mockRegion)
case http.MethodPatch:
w.WriteHeader(http.StatusOK)
enabledRegion := CloudRegion{RegionInfo: nil}
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(enabledRegion)
case http.MethodDelete:
w.WriteHeader(http.StatusAccepted)
default:
Expand Down
Loading

0 comments on commit 1956d95

Please sign in to comment.