Skip to content

Commit

Permalink
Merge pull request #142 from k0sproject/lint-fixes-2024-11
Browse files Browse the repository at this point in the history
Fix log.Fatalf lint error
  • Loading branch information
kke authored Nov 20, 2024
2 parents 97abf64 + 2360e4f commit 365399b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (conf Config) Validate() error {
err := machine.validate()
if err != nil {
valid = false
log.Fatalf(err.Error())
log.Fatal(err.Error())
}
}
if !valid {
Expand Down

0 comments on commit 365399b

Please sign in to comment.