Skip to content

Commit 59f59cd

Browse files
Increase timeout (#308)
1 parent 3255f7c commit 59f59cd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

services/ske/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- **Improvement**: Fix state name in `CredentialsRotationState.Phase`
44
- Update `core` to `v0.7.7`. The `http.request` context is now passed in the client `Do` call.
5+
- Increase timeout on `DeleteClusterWaitHandler` to 45 minutes
56

67
## v0.9.2 (2024-01-24)
78

services/ske/wait/wait.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func DeleteClusterWaitHandler(ctx context.Context, a APIClientClusterInterface,
7777
}
7878
return true, s, nil
7979
})
80-
handler.SetTimeout(15 * time.Minute)
80+
handler.SetTimeout(45 * time.Minute)
8181
return handler
8282
}
8383

0 commit comments

Comments
 (0)