Skip to content

Commit

Permalink
Fix golangci-lint 'unparam'.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Feb 29, 2024
1 parent c137c2b commit caf15c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ func statusApplicationLayerAutomaticResponse(ctx context.Context, conn *shield.C
}
}

func waitApplicationLayerAutomaticResponseEnabled(ctx context.Context, conn *shield.Client, resourceARN string, timeout time.Duration) (*awstypes.ApplicationLayerAutomaticResponseConfiguration, error) {
func waitApplicationLayerAutomaticResponseEnabled(ctx context.Context, conn *shield.Client, resourceARN string, timeout time.Duration) (*awstypes.ApplicationLayerAutomaticResponseConfiguration, error) { //nolint:unparam
stateConf := &retry.StateChangeConf{
Pending: []string{},
Target: enum.Slice(awstypes.ApplicationLayerAutomaticResponseStatusEnabled),
Expand Down

0 comments on commit caf15c8

Please sign in to comment.