Skip to content

Commit

Permalink
ci(cwevi): nolint unparam update waiter
Browse files Browse the repository at this point in the history
  • Loading branch information
GlennChia committed Oct 20, 2022
1 parent f86ff56 commit cd7d5c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/service/evidently/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func waitProjectCreated(conn *cloudwatchevidently.CloudWatchEvidently, nameOrARN
return nil, err
}

func waitProjectUpdated(conn *cloudwatchevidently.CloudWatchEvidently, nameOrARN string, timeout time.Duration) (*cloudwatchevidently.GetProjectOutput, error) {
func waitProjectUpdated(conn *cloudwatchevidently.CloudWatchEvidently, nameOrARN string, timeout time.Duration) (*cloudwatchevidently.GetProjectOutput, error) { //nolint:unparam
stateConf := &resource.StateChangeConf{
Pending: []string{cloudwatchevidently.ProjectStatusUpdating},
Target: []string{cloudwatchevidently.ProjectStatusAvailable},
Expand Down

0 comments on commit cd7d5c7

Please sign in to comment.