Skip to content

Commit

Permalink
Use 20m default timeout again
Browse files Browse the repository at this point in the history
  • Loading branch information
aayushrangwala committed Sep 21, 2023
1 parent b1ee4f8 commit a952705
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions equinix/resource_metal_port.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ var (
func resourceMetalPort() *schema.Resource {
return &schema.Resource{
Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(30 * time.Minute),
Update: schema.DefaultTimeout(30 * time.Minute),
Delete: schema.DefaultTimeout(30 * time.Minute),
Create: schema.DefaultTimeout(20 * time.Minute),
Update: schema.DefaultTimeout(20 * time.Minute),
Delete: schema.DefaultTimeout(20 * time.Minute),
},
ReadWithoutTimeout: diagnosticsWrapper(resourceMetalPortRead),
// Create and Update are the same func
Expand Down

0 comments on commit a952705

Please sign in to comment.