Skip to content
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@
- **Deprecation:** WaitHandler `AddVolumeToServerWaitHandler` and `RemoveVolumeFromServerWaitHandler` are deprecated and will be removed after November 2026. Please use instead `ProjectRequestWaitHandler`.
- [v1.12.1](services/iaas/CHANGELOG.md#v1121)
- **Dependencies:** Bump STACKIT SDK resourcemanager module from `v0.23.0` to `v0.24.0`
- [v1.12.2](services/iaas/CHANGELOG.md#v1122)
- `v2api`
- **Improvement**: fix `DeleteVolumeWaitHandler` error message
- `intake`:
- [v0.7.3](services/intake/CHANGELOG.md#v073)
- **Dependencies:** Bump STACKIT SDK core module from `v0.24.0` to `v0.24.1`
Expand Down
4 changes: 4 additions & 0 deletions services/iaas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.12.2
- `v2api`
- **Improvement**: fix `DeleteVolumeWaitHandler` error message

## v1.12.1
- **Dependencies:** Bump STACKIT SDK resourcemanager module from `v0.23.0` to `v0.24.0`

Expand Down
2 changes: 1 addition & 1 deletion services/iaas/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.12.1
v1.12.2
2 changes: 1 addition & 1 deletion services/iaas/v2api/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ func DeleteVolumeWaitHandler(ctx context.Context, a iaas.DefaultAPI, projectId,
FetchInstance: a.GetVolume(ctx, projectId, region, volumeId).Execute,
GetState: func(i *iaas.Volume) (string, error) {
if i.Id == nil || i.Status == nil {
return "", fmt.Errorf("create failed for volume with id %s, the response is not valid: the id or the status are missing", volumeId)
return "", fmt.Errorf("delete failed for volume with id %s, the response is not valid: the id or the status are missing", volumeId)
}
return *i.Status, nil
},
Expand Down
Loading