Skip to content

Commit 8c4d465

Browse files
committed
add timeout
1 parent 329c0bf commit 8c4d465

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cloud/resource_pulsar_cluster.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ func resourcePulsarCluster() *schema.Resource {
6767
return []*schema.ResourceData{d}, nil
6868
},
6969
},
70+
Timeouts: &schema.ResourceTimeout{
71+
// Pulsar clusters can take time to tear down; allow 30m to avoid spurious test failures.
72+
Delete: schema.DefaultTimeout(30 * time.Minute),
73+
},
7074
Schema: map[string]*schema.Schema{
7175
"organization": {
7276
Type: schema.TypeString,

0 commit comments

Comments
 (0)