Skip to content

Commit 061a315

Browse files
committed
chore: Revert changes to semgrep/lint comments
1 parent aea201c commit 061a315

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/service/eks/cluster.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,7 @@ func waitClusterDeleted(ctx context.Context, conn *eks.Client, name string, time
11101110
return nil, err
11111111
}
11121112

1113-
func waitClusterUpdateSuccessful(ctx context.Context, conn *eks.Client, name, id string, timeout time.Duration) (*types.Update, error) {
1113+
func waitClusterUpdateSuccessful(ctx context.Context, conn *eks.Client, name, id string, timeout time.Duration) (*types.Update, error) { //nolint:unparam
11141114
stateConf := &retry.StateChangeConf{
11151115
Pending: enum.Slice(types.UpdateStatusInProgress),
11161116
Target: enum.Slice(types.UpdateStatusSuccessful),
@@ -1340,7 +1340,7 @@ func expandControlPlanePlacementRequest(tfList []any) *types.ControlPlanePlaceme
13401340
return apiObject
13411341
}
13421342

1343-
func expandVpcConfigRequest(tfList []any) *types.VpcConfigRequest {
1343+
func expandVpcConfigRequest(tfList []any) *types.VpcConfigRequest { // nosemgrep:ci.caps5-in-func-name
13441344
if len(tfList) == 0 {
13451345
return nil
13461346
}
@@ -1664,7 +1664,7 @@ func flattenProvider(apiObject *types.Provider) []any {
16641664
return []any{tfMap}
16651665
}
16661666

1667-
func flattenVPCConfigResponse(vpcConfig *types.VpcConfigResponse) []map[string]any {
1667+
func flattenVPCConfigResponse(vpcConfig *types.VpcConfigResponse) []map[string]any { // nosemgrep:ci.caps5-in-func-name
16681668
if vpcConfig == nil {
16691669
return []map[string]any{}
16701670
}

0 commit comments

Comments
 (0)