Skip to content

Commit

Permalink
Solved discrepancies
Browse files Browse the repository at this point in the history
Signed-off-by: cs-308-2023 <[email protected]>
  • Loading branch information
ADI-ROXX committed Jan 20, 2025
1 parent dded6e4 commit 84fed2d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"github.com/jaegertracing/jaeger/pkg/version"
)

func RunFeatures() {
func DisplayFeatures() {
info := component.BuildInfo{
Command: "jaeger",
Description: internal.GetDescription(),
Expand Down
2 changes: 1 addition & 1 deletion cmd/jaeger/internal/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var yamlAllInOne embed.FS

const description = "Jaeger backend v2"

func GetDescription() string {
func GetDescription() string{
return description
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/jaeger/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func featuresCommand() *cobra.Command {
Short: "Displays the list of supported features",
Long: "The 'features' command shows all supported features in the current build of Jaeger.",
Run: func(_ *cobra.Command, _ []string) {
features.RunFeatures()
features.DisplayFeatures()
},
}
}

0 comments on commit 84fed2d

Please sign in to comment.