Skip to content

Commit

Permalink
chore: fix build error in 0223f7d (#850)
Browse files Browse the repository at this point in the history
The CI didn't catch this error, so it ended up in main.
  • Loading branch information
phm07 authored Aug 26, 2024
1 parent 0223f7d commit 2cf34e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/cmd/certificate/retry.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

var RetryCmd = base.Cmd{
BaseCobraCommand: func(client hcapi2.Client) *cobra.Command {
BaseCobraCommand: func(_ hcapi2.Client) *cobra.Command {
return &cobra.Command{
Use: "retry <certificate>",
Short: "Retry a managed certificate's issuance",
Expand All @@ -34,7 +34,7 @@ var RetryCmd = base.Cmd{
return err
}

if err := s.WaitForActions(cmd, s, action); err != nil {
if err := s.WaitForActions(s, cmd, action); err != nil {
return err
}

Expand Down

0 comments on commit 2cf34e9

Please sign in to comment.