Skip to content

Commit

Permalink
Merge pull request #237 from cisco-en-programmability/develop
Browse files Browse the repository at this point in the history
## 1.1.25-beta (October 26, 2023)
  • Loading branch information
fmunozmiranda authored Oct 26, 2023
2 parents 008eb84 + ea4570d commit dd8b9b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.25-beta (October 26, 2023)
BUGFIXES:
* Hardcoded sleep in dnacenter_floor, dnacenter_area resources #227 - 1 minute sleep removed.

## 1.1.24-beta (October 25, 2023)
BUGFIXES:
* Resource dnacenter_wireless_profile does not support adding new SSIDs to profile #229.
Expand Down
2 changes: 1 addition & 1 deletion dnacenter/resource_area.go
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ func resourceAreaDelete(ctx context.Context, d *schema.ResourceData, m interface
resourceID := d.Id()
resourceMap := separateResourceID(resourceID)
vSiteID := resourceMap["site_id"]
time.Sleep(1 * time.Minute)
// time.Sleep(1 * time.Minute)
// queryParams1 := dnacentersdkgo.GetSiteQueryParams{}
// queryParams1.Name = vName
// queryParams1.SiteID = vSiteID
Expand Down
2 changes: 1 addition & 1 deletion dnacenter/resource_floor.go
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ func resourceFloorDelete(ctx context.Context, d *schema.ResourceData, m interfac
resourceID := d.Id()
resourceMap := separateResourceID(resourceID)
vSiteID := resourceMap["site_id"]
time.Sleep(1 * time.Minute)
// time.Sleep(1 * time.Minute)
// queryParams1 := dnacentersdkgo.GetSiteQueryParams{}
// queryParams1.Name = vName
// queryParams1.SiteID = vSiteID
Expand Down

0 comments on commit dd8b9b1

Please sign in to comment.