Skip to content
Open
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@
- **Improvement:** Add validation to Name field of model struct `Cluster`
- **Feature:** New model struct `Audit`
- **Feature:** Add Audit (type Audit) field to model struct `CreateOrUpdateClusterPayload`
- [v1.20.0](services/ske/CHANGELOG.md#v1200)
- Package `v2api`:
- **Fix:** Increased timeout in `DeleteClusterWaitHandler` to 90 min
- Deprecated SDK layer in root of the module:
- **Fix:** Increased timeout in `DeleteClusterWaitHandler` to 90 min

- `sqlserverflex`:
- [v1.14.0](services/sqlserverflex/CHANGELOG.md#v1140)
- `v3beta2api`: **New:** New package which can be used for communication with the sqlserverflex v3beta2 API
Expand Down
6 changes: 6 additions & 0 deletions services/ske/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v1.20.0
- Package `v2api`:
- **Fix:** Increased timeout in `DeleteClusterWaitHandler` to 90 min
- Deprecated SDK layer in root of the module:
- **Fix:** Increased timeout in `DeleteClusterWaitHandler` to 90 min

## v1.19.0
- Package `v1api`:
- **Improvement:** Add validation to Name field of model struct `Cluster`
Expand Down
2 changes: 1 addition & 1 deletion services/ske/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.19.0
v1.20.0
2 changes: 1 addition & 1 deletion services/ske/v2api/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func DeleteClusterWaitHandler(ctx context.Context, a ske.DefaultAPI, projectId,
}
return true, s, nil
})
handler.SetTimeout(45 * time.Minute)
handler.SetTimeout(90 * time.Minute)
return handler
}

Expand Down
2 changes: 1 addition & 1 deletion services/ske/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func DeleteClusterWaitHandler(ctx context.Context, a APIClientClusterInterface,
}
return true, s, nil
})
handler.SetTimeout(45 * time.Minute)
handler.SetTimeout(90 * time.Minute)
return handler
}

Expand Down
Loading