Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

E2E: general hardening #4079

Merged
merged 5 commits into from
Oct 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/e2e/kubernetes/hpa/hpa.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func Get(name, namespace string) (*HPA, error) {
util.PrintCommand(cmd)
out, err := cmd.CombinedOutput()
if err != nil {
log.Printf("Error trying to run 'kubectl get svc':%s\n", string(out))
log.Printf("Error trying to run 'kubectl get hpa':%s\n", string(out))
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo

return nil, err
}
h := HPA{}
Expand Down
Loading