Skip to content

Commit

Permalink
Fix usage of log.Fatalf() in main.go (#12655)
Browse files Browse the repository at this point in the history
  • Loading branch information
lychgoogle authored Jan 6, 2025
1 parent 4e86784 commit afd14dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mmv1/third_party/terraform/main.go.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func main() {
// use the muxer
muxServer, err := tf5muxserver.NewMuxServer(context.Background(), providers...)
if err != nil {
log.Fatalf(err.Error())
log.Fatal(err.Error())
}

var serveOpts []tf5server.ServeOpt
Expand Down

0 comments on commit afd14dc

Please sign in to comment.