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
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
- **Feature:** Add new `GoogleChat` webhook
- `scf`: [v0.2.1](services/scf/CHANGELOG.md#v021)
- **Feature:** Add waiter for deletion of organization
- `iaas`: [v0.29.1](services/iaas/CHANGELOG.md#v0291)
- **Bugfix:** Parsing oneOf with enum and string value
- `iaas`:
- [v0.29.2](services/iaas/CHANGELOG.md#v0291)
- Increase Timeouts for network area and network wait handlers to 30 minutes
- [v0.29.1](services/iaas/CHANGELOG.md#v0291)
- **Bugfix:** Parsing oneOf with enum and string value
- `stackitmarketplace`: [v1.7.1](services/stackitmarketplace/CHANGELOG.md#v171)
- **Bugfix:** oneOfs with enums and strings can not be parsed

Expand Down
3 changes: 3 additions & 0 deletions services/iaas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.29.2
- Increase Timeouts for network area and network wait handlers to 30 minutes

## v0.29.1
- **Bugfix:** Parsing oneOf with enum and string value

Expand Down
2 changes: 1 addition & 1 deletion services/iaas/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.29.1
v0.29.2
12 changes: 6 additions & 6 deletions services/iaas/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func CreateNetworkAreaWaitHandler(ctx context.Context, a APIClientInterface, org
}
return false, area, nil
})
handler.SetTimeout(15 * time.Minute)
handler.SetTimeout(30 * time.Minute)
return handler
}

Expand All @@ -94,7 +94,7 @@ func UpdateNetworkAreaWaitHandler(ctx context.Context, a APIClientInterface, org
return false, area, nil
})
handler.SetSleepBeforeWait(2 * time.Second)
handler.SetTimeout(15 * time.Minute)
handler.SetTimeout(30 * time.Minute)
return handler
}

Expand All @@ -114,7 +114,7 @@ func DeleteNetworkAreaWaitHandler(ctx context.Context, a APIClientInterface, org
}
return true, nil, nil
})
handler.SetTimeout(15 * time.Minute)
handler.SetTimeout(30 * time.Minute)
return handler
}

Expand All @@ -135,7 +135,7 @@ func CreateNetworkWaitHandler(ctx context.Context, a APIClientInterface, project
return false, network, nil
})
handler.SetSleepBeforeWait(2 * time.Second)
handler.SetTimeout(15 * time.Minute)
handler.SetTimeout(30 * time.Minute)
return handler
}

Expand All @@ -156,7 +156,7 @@ func UpdateNetworkWaitHandler(ctx context.Context, a APIClientInterface, project
return false, network, nil
})
handler.SetSleepBeforeWait(2 * time.Second)
handler.SetTimeout(15 * time.Minute)
handler.SetTimeout(30 * time.Minute)
return handler
}

Expand All @@ -176,7 +176,7 @@ func DeleteNetworkWaitHandler(ctx context.Context, a APIClientInterface, project
}
return true, nil, nil
})
handler.SetTimeout(15 * time.Minute)
handler.SetTimeout(30 * time.Minute)
return handler
}

Expand Down
Loading