Skip to content

Commit

Permalink
Bump timeout for CCE resources (#410)
Browse files Browse the repository at this point in the history
This bumps the Create/Delete timeouts for CCE cluster and node.
  • Loading branch information
niuzhenguo authored Dec 3, 2020
1 parent 3688bf7 commit c545080
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions flexibleengine/resource_flexibleengine_cce_cluster_v3.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ func resourceCCEClusterV3() *schema.Resource {
},

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(10 * time.Minute),
Delete: schema.DefaultTimeout(10 * time.Minute),
Create: schema.DefaultTimeout(30 * time.Minute),
Delete: schema.DefaultTimeout(30 * time.Minute),
},

Schema: map[string]*schema.Schema{
Expand Down
4 changes: 2 additions & 2 deletions flexibleengine/resource_flexibleengine_cce_node_v3.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ func resourceCCENodeV3() *schema.Resource {
},

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(10 * time.Minute),
Delete: schema.DefaultTimeout(5 * time.Minute),
Create: schema.DefaultTimeout(20 * time.Minute),
Delete: schema.DefaultTimeout(20 * time.Minute),
},

Schema: map[string]*schema.Schema{
Expand Down

0 comments on commit c545080

Please sign in to comment.