Skip to content

Commit

Permalink
fix: provider fails to create sometimes due to user error, exit cleanly.
Browse files Browse the repository at this point in the history
  • Loading branch information
kashalls committed Sep 30, 2024
1 parent 0355ed8 commit 8f9b870
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 8f9b870

Please sign in to comment.