Skip to content

Commit

Permalink
fixed error message
Browse files Browse the repository at this point in the history
  • Loading branch information
eranturgeman committed Sep 18, 2024
1 parent be9cf8e commit 6f3e5df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/xsc/configprofile.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func GetConfigProfile(serverDetails *config.ServerDetails, profileName string) (

xscVersion, err := xscManager.GetVersion()
if err != nil {
return nil, fmt.Errorf("failed to get XSC service version '%s': %q", profileName, err)
return nil, fmt.Errorf("failed to get XSC service version: %q", err)
}

if err = clientutils.ValidateMinimumVersion(clientutils.Xsc, xscVersion, services.ConfigProfileMinXscVersion); err != nil {
Expand Down

0 comments on commit 6f3e5df

Please sign in to comment.