We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when try to remove record by the name
deletedRecs, err := provider.DeleteRecords(ctx, zone, []libdns.Record{ { Name: "sub", }, })
in the DeleteRecords method :
rfc2136/provider.go
Line 101 in ec2c145
recordToRR return nil RR...
and crash at
Line 105 in ec2c145
when i add type:
deletedRecs, err := provider.DeleteRecords(ctx, zone, []libdns.Record{ { Name: "sub", Type: "A", }, })
they not crash but not remove the record...
The text was updated successfully, but these errors were encountered:
is not because you use Remove https://github.com/miekg/dns/blob/b18c05cc13607aacb056a0f483e0f4c9229a1d67/update.go#L102
Remove
in place of
https://github.com/miekg/dns/blob/b18c05cc13607aacb056a0f483e0f4c9229a1d67/update.go#L92 RemoveName ?
RemoveName
Sorry, something went wrong.
No branches or pull requests
when try to remove record by the name
in the DeleteRecords method :
rfc2136/provider.go
Line 101 in ec2c145
recordToRR return nil RR...
and crash at
rfc2136/provider.go
Line 105 in ec2c145
when i add type:
they not crash but not remove the record...
The text was updated successfully, but these errors were encountered: