Skip to content

Commit

Permalink
fix(operator): wrong variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
bo0tzz committed May 6, 2024
1 parent 6139131 commit f3fe7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/preview-operator/internal/http/svc.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (svc *PreviewService) CreatePreview(ctx context.Context, request previewCre
return nil, err
}

log.Info("Created preview", "Name", preview.Name)
log.Info("Created preview", "Name", pvw.Name)
return &pvw, nil
} else if err != nil {
log.Error(err, "Failed to get preview")
Expand Down

0 comments on commit f3fe7c1

Please sign in to comment.