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 Oct 11, 2023
1 parent 8535776 commit 65743af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/service/docdb/cluster_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ func statusDBInstance(ctx context.Context, conn *docdb.DocDB, id string) retry.S
}
}

func waitDBInstanceAvailable(ctx context.Context, conn *docdb.DocDB, id string, timeout time.Duration) (*docdb.DBInstance, error) {
func waitDBInstanceAvailable(ctx context.Context, conn *docdb.DocDB, id string, timeout time.Duration) (*docdb.DBInstance, error) { //nolint:unparam
stateConf := &retry.StateChangeConf{
Pending: []string{
"backing-up",
Expand Down

0 comments on commit 65743af

Please sign in to comment.