From 19b535caac614ece950449b5d8fd3c4f93e457f5 Mon Sep 17 00:00:00 2001 From: Ludovic Fernandez Date: Mon, 21 Oct 2024 20:23:03 +0200 Subject: [PATCH] limacity: fix error message (#2310) --- providers/dns/limacity/limacity.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/dns/limacity/limacity.go b/providers/dns/limacity/limacity.go index 87b7d37a..a999f564 100644 --- a/providers/dns/limacity/limacity.go +++ b/providers/dns/limacity/limacity.go @@ -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)