Skip to content

Commit

Permalink
fix: provider fails to create sometimes due to user error, exit clean…
Browse files Browse the repository at this point in the history
…ly. (#60)
  • Loading branch information
kashalls authored Sep 30, 2024
1 parent 0355ed8 commit 51bdae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/webhook/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func main() {
config := configuration.Init()
provider, err := dnsprovider.Init(config)
if err != nil {
log.Error("failed to initialize provider", zap.Error(err))
log.Fatal("failed to initialize provider", zap.Error(err))
}

main, health := server.Init(config, webhook.New(provider))
Expand Down

0 comments on commit 51bdae6

Please sign in to comment.