Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

Commit

Permalink
Fix incorrect log message (#3172)
Browse files Browse the repository at this point in the history
  • Loading branch information
anujc25 authored Aug 23, 2022
1 parent 72a11ee commit 6288c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/v1/tkg/client/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ func (c *TkgClient) InitRegion(options *InitRegionOptions) error { //nolint:funl
if regionalConfigBytes, options.ClusterName, configFilePath, err = c.BuildRegionalClusterConfiguration(options); err != nil {
return errors.Wrap(err, "unable to build management cluster configuration")
}
log.Infof("ClusterClass based management cluster config file has been generated and stored at: '%v'", configFilePath)
log.Infof("Management cluster config file has been generated and stored at: '%v'", configFilePath)

isStartedRegionalClusterCreation = true

Expand Down

0 comments on commit 6288c75

Please sign in to comment.