Skip to content

Commit ae8c71e

Browse files
authored
chore(iaas): increase network-area/network timeout handler (#3517)
1 parent 7252d2f commit ae8c71e

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@
66
- **Feature:** Add new `GoogleChat` webhook
77
- `scf`: [v0.2.1](services/scf/CHANGELOG.md#v021)
88
- **Feature:** Add waiter for deletion of organization
9-
- `iaas`: [v0.29.1](services/iaas/CHANGELOG.md#v0291)
10-
- **Bugfix:** Parsing oneOf with enum and string value
9+
- `iaas`:
10+
- [v0.29.2](services/iaas/CHANGELOG.md#v0291)
11+
- Increase Timeouts for network area and network wait handlers to 30 minutes
12+
- [v0.29.1](services/iaas/CHANGELOG.md#v0291)
13+
- **Bugfix:** Parsing oneOf with enum and string value
1114
- `stackitmarketplace`: [v1.7.1](services/stackitmarketplace/CHANGELOG.md#v171)
1215
- **Bugfix:** oneOfs with enums and strings can not be parsed
1316

services/iaas/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.29.2
2+
- Increase Timeouts for network area and network wait handlers to 30 minutes
3+
14
## v0.29.1
25
- **Bugfix:** Parsing oneOf with enum and string value
36

services/iaas/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.29.1
1+
v0.29.2

services/iaas/wait/wait.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func CreateNetworkAreaWaitHandler(ctx context.Context, a APIClientInterface, org
7373
}
7474
return false, area, nil
7575
})
76-
handler.SetTimeout(15 * time.Minute)
76+
handler.SetTimeout(30 * time.Minute)
7777
return handler
7878
}
7979

@@ -94,7 +94,7 @@ func UpdateNetworkAreaWaitHandler(ctx context.Context, a APIClientInterface, org
9494
return false, area, nil
9595
})
9696
handler.SetSleepBeforeWait(2 * time.Second)
97-
handler.SetTimeout(15 * time.Minute)
97+
handler.SetTimeout(30 * time.Minute)
9898
return handler
9999
}
100100

@@ -114,7 +114,7 @@ func DeleteNetworkAreaWaitHandler(ctx context.Context, a APIClientInterface, org
114114
}
115115
return true, nil, nil
116116
})
117-
handler.SetTimeout(15 * time.Minute)
117+
handler.SetTimeout(30 * time.Minute)
118118
return handler
119119
}
120120

@@ -135,7 +135,7 @@ func CreateNetworkWaitHandler(ctx context.Context, a APIClientInterface, project
135135
return false, network, nil
136136
})
137137
handler.SetSleepBeforeWait(2 * time.Second)
138-
handler.SetTimeout(15 * time.Minute)
138+
handler.SetTimeout(30 * time.Minute)
139139
return handler
140140
}
141141

@@ -156,7 +156,7 @@ func UpdateNetworkWaitHandler(ctx context.Context, a APIClientInterface, project
156156
return false, network, nil
157157
})
158158
handler.SetSleepBeforeWait(2 * time.Second)
159-
handler.SetTimeout(15 * time.Minute)
159+
handler.SetTimeout(30 * time.Minute)
160160
return handler
161161
}
162162

@@ -176,7 +176,7 @@ func DeleteNetworkWaitHandler(ctx context.Context, a APIClientInterface, project
176176
}
177177
return true, nil, nil
178178
})
179-
handler.SetTimeout(15 * time.Minute)
179+
handler.SetTimeout(30 * time.Minute)
180180
return handler
181181
}
182182

0 commit comments

Comments
 (0)