We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74b27d0 commit 614c028Copy full SHA for 614c028
rhoc/pkg/cmd/connectors/patch/ready.go rhoc/pkg/cmd/connectors/patch/start.gorhoc/pkg/cmd/connectors/patch/ready.go renamed to rhoc/pkg/cmd/connectors/patch/start.go
@@ -25,7 +25,7 @@ func NewStartCommand(f *factory.Factory) *cobra.Command {
25
return nil
26
},
27
RunE: func(cmd *cobra.Command, args []string) error {
28
- return opts.ready()
+ return opts.start()
29
30
}
31
@@ -36,7 +36,7 @@ func NewStartCommand(f *factory.Factory) *cobra.Command {
36
return cmd
37
38
39
-func (opts options) ready() error {
+func (opts options) start() error {
40
if !opts.skipConfirm {
41
confirm, promptErr := cmdutil.PromptConfirm("Are you sure you want to start the connector with id '%s'?", opts.id)
42
if promptErr != nil {
0 commit comments