Skip to content

Commit

Permalink
Fix err msg in topo manager server parse (#551)
Browse files Browse the repository at this point in the history
fix err msg
  • Loading branch information
alexmasi authored Jul 22, 2024
1 parent 3929cc9 commit 3bc72c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func newDeployment(req *cpb.CreateClusterRequest) (*deploy.Deployment, error) {
if k.KindConfigFile != "" {
p, err := validatePath(k.KindConfigFile)
if err != nil {
return nil, fmt.Errorf("failed to validate path %q", p)
return nil, fmt.Errorf("failed to validate path %q", k.KindConfigFile)
}
k.KindConfigFile = p
}
Expand Down

0 comments on commit 3bc72c6

Please sign in to comment.