Skip to content
Open
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 pkg/cmd/request/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func runCmd(opts *options) (err error) {
opts.Logger.Info("POST request. Reading file from standard input")
specifiedFile, err1 := util.CreateFileFromStdin()
if err1 != nil {
return err
return err1
}
data, response, err = conn.API().GenericAPI().POST(opts.Context, opts.urlPath, specifiedFile)
} else {
Expand Down
2 changes: 1 addition & 1 deletion pkg/shared/cluster/bind.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func (c *KubernetesClusterAPIImpl) performBinding(
}
errAsk := survey.AskOne(confirm, &shouldContinue)
if errAsk != nil {
return err
return errAsk
}

if !shouldContinue {
Expand Down