Skip to content

Commit

Permalink
Fix return statement for netscalerdnsprovider
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Tytgat <[email protected]>
  • Loading branch information
jantytgat committed Apr 30, 2024
1 parent ab9b506 commit ad90fd0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pkg/lego/providers/dns/netscalerdns/netscalerdns.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,7 @@ func NewNetScalerDnsProvider(maxRetries int) (*DNSProvider, error) {
maxRetries: maxRetries,
}
p.initialize()
return &DNSProvider{
maxRetries: maxRetries,
}, nil
return p, nil
}

// DNSProvider manages ACME requests for NetScaler ADC Authoritative DNS service
Expand Down

0 comments on commit ad90fd0

Please sign in to comment.