Closed mschedrin closed 1 year ago
Hi @mschedrin, problem we are working to remove it, tommorow a new version will be released.
@fmunozmiranda you have removed delay in building
resource, but forgot to do the same for area
: https://github.com/cisco-en-programmability/terraform-provider-dnacenter/blob/860d4589a2bbaa683f3649f80c38579e0d3e2e1d/dnacenter/resource_area.go#L408 and floor
: https://github.com/cisco-en-programmability/terraform-provider-dnacenter/blob/860d4589a2bbaa683f3649f80c38579e0d3e2e1d/dnacenter/resource_floor.go#L568
Sleeps removed.
Prerequisites
Describe the bug I noticed that deletion of
dnacenter_floor
resource is taking long time, looked at the resource code and foundtime.Sleep(1 * time.Minute)
inresourceFloorDelete
function. The same sleep can be found in_building
and_area
resources. Please remove it, I hope it is not necessary any more.