Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sauterp committed Mar 8, 2024
1 parent c6ea57b commit f831fdd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions internal/integ/cluster/teardown.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,11 @@ func (c *Cluster) awaitID(op *exov3.Operation, err error) (exov3.UUID, error) {
return "", err
}

slog.Info("API key ref", "id", finishedOP.Reference.ID)
if finishedOP.Reference != nil {
return finishedOP.Reference.ID, nil
}

return finishedOP.Reference.ID, nil
return nil, nil
}

func (c *Cluster) awaitSuccess(op *exov3.Operation, err error) error {
Expand Down

0 comments on commit f831fdd

Please sign in to comment.