Skip to content

Commit

Permalink
fix(all): support four-layer lb
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiMengXS committed Feb 22, 2024
1 parent 27788d5 commit 3bda8ca
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@ func parseParamToRequest(d *schema.ResourceData, param string, id string) (assoc
targetGroupAssociation := clb.TargetGroupAssociation{}
dMap[param] = id
for name := range dMap {
fmt.Println(name, dMap[name])
if dMap[name] != nil && dMap[name].(string) != "" {
setString(name, dMap[name].(string), &targetGroupAssociation)
}
Expand Down Expand Up @@ -322,7 +321,6 @@ func margeReadRequest(d *schema.ResourceData) ([]string, map[string]struct{}) {
}

associationsSet[strings.Join(ids, tccommon.FILED_SP)] = struct{}{}
fmt.Println("create cdr", strings.Join(ids, tccommon.FILED_SP))
}
}
if len(targetGroupList) < 1 && !isBindFromClb(resourceId) {
Expand Down
1 change: 0 additions & 1 deletion tencentcloud/services/clb/service_tencentcloud_clb.go
Original file line number Diff line number Diff line change
Expand Up @@ -2335,7 +2335,6 @@ func (me *ClbService) DescribeClbTargetGroupAttachmentsById(ctx context.Context,
}

key := strings.Join(info, tccommon.FILED_SP)
fmt.Println("read cdr", key)
if _, ok := associationsSet[key]; ok {
result = append(result, key)
}
Expand Down

0 comments on commit 3bda8ca

Please sign in to comment.