Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Log error when podman client cannot be initialized #6538

Merged
merged 11 commits into from
Feb 3, 2023
Prev Previous commit
Next Next commit
fix validation failure
valaparthvi committed Jan 31, 2023
commit d4998f61acea8d5634d45725e0c405819fbc6946
2 changes: 1 addition & 1 deletion pkg/kclient/errors.go
Original file line number Diff line number Diff line change
@@ -28,5 +28,5 @@ func NewNoConnectionError() NoConnectionError {

func (e NoConnectionError) Error() string {
// could also be "cluster is non accessible"
return fmt.Sprintf("unable to access the cluster")
return "unable to access the cluster"
}