Skip to content

Commit a1f529d

Browse files
chore(vendor): update vendoring (#1798)
1 parent 08de2ed commit a1f529d

File tree

3,027 files changed

+455791
-33497
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,027 files changed

+455791
-33497
lines changed

docs/commands/rhoas.md

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/commands/rhoas_dedicated.md

+26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/commands/rhoas_dedicated_register-cluster.md

+42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/cmd/dedicated/dedicated.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"github.com/spf13/cobra"
77
)
88

9-
// TODO add localizer and descriptions
9+
// TO-DO add localizer and descriptions
1010
func NewDedicatedCmd(f *factory.Factory) *cobra.Command {
1111
cmd := &cobra.Command{
1212
Use: "dedicated",

pkg/cmd/dedicated/dedicatedcmdutil/dedicated_util.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ package kafkacmdutil
22

33
import (
44
"fmt"
5+
"strconv"
6+
57
"github.com/redhat-developer/app-services-cli/pkg/core/errors"
68
"github.com/redhat-developer/app-services-cli/pkg/core/localize"
79
"github.com/redhat-developer/app-services-cli/pkg/shared/factory"
8-
"strconv"
910
)
1011

1112
// Validator is a type for validating Kafka configuration values
@@ -25,7 +26,7 @@ func ValidateMachinePoolCount(count int) bool {
2526
func (v *Validator) ValidatorForMachinePoolNodes(val interface{}) error {
2627
value := fmt.Sprintf("%v", val)
2728
if val == "" {
28-
return errors.NewCastError(val, "emtpy string")
29+
return errors.NewCastError(val, "empty string")
2930
}
3031
value1, err := strconv.Atoi(value)
3132
if err != nil {

0 commit comments

Comments
 (0)