Skip to content

Commit

Permalink
limacity: fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Oct 21, 2024
1 parent 6051473 commit 4203bba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/dns/limacity/limacity.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
domainID, ok := d.domainIDs[token]
d.domainIDsMu.Unlock()
if !ok {
return fmt.Errorf("liara: unknown domain ID for '%s' '%s'", info.EffectiveFQDN, token)
return fmt.Errorf("limacity: unknown domain ID for '%s' '%s'", info.EffectiveFQDN, token)
}

records, err := d.client.GetRecords(context.Background(), domainID)
Expand Down

0 comments on commit 4203bba

Please sign in to comment.