Skip to content

Commit

Permalink
mailgun don't like long passwords
Browse files Browse the repository at this point in the history
  • Loading branch information
simonoff committed Sep 16, 2024
1 parent 2e06a72 commit 5222945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controller/domain/domain_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ func (r *DomainReconciler) createDomain(ctx context.Context, domain *domainv1.Do
options.Wildcard = true
}
// Generate a random password
password, err := utils.RandomHex(32)
password, err := utils.RandomHex(16)
if err != nil {
log.Error(err, "unable to generate random password")
return err
Expand Down

0 comments on commit 5222945

Please sign in to comment.