Skip to content

Commit

Permalink
fix: turn off debug on identify commands (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon authored Sep 12, 2022
1 parent 59a4951 commit 7eb2cc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/identify_feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var featureFlagIdentify = &cobra.Command{
Aliases: []string{"f"},
Short: "Identify if a feature flag has been enabled",
RunE: func(cmd *cobra.Command, args []string) error {
generator, err := generatorInput(true)
generator, err := generatorInput(false)
if err != nil {
return err
}
Expand Down
4 changes: 2 additions & 2 deletions cmd/identify_ingress.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var primaryIngressIdentify = &cobra.Command{
Aliases: []string{"pi"},
Short: "Identify the primary ingress for a specific environment",
RunE: func(cmd *cobra.Command, args []string) error {
generator, err := generatorInput(true)
generator, err := generatorInput(false)
if err != nil {
return err
}
Expand All @@ -37,7 +37,7 @@ var ingressIdentify = &cobra.Command{
Aliases: []string{"i"},
Short: "Identify all ingress for a specific environment",
RunE: func(cmd *cobra.Command, args []string) error {
generator, err := generatorInput(true)
generator, err := generatorInput(false)
if err != nil {
return err
}
Expand Down

0 comments on commit 7eb2cc5

Please sign in to comment.