Fix copy & paste issue in ovh error message in tls.rs (#2130)

Use the right Provider in the OVH Error message
This commit is contained in:
Aleks
2025-09-09 19:05:44 +02:00
committed by GitHub
parent 975affecfe
commit 167e53da58

View File

@@ -304,7 +304,7 @@ fn build_dns_updater(config: &mut Config, acme_id: &str) -> Option<DnsUpdater> {
.map_err(|err| {
config.new_build_error(
("acme", acme_id, "provider"),
format!("Failed to create Desec DNS updater: {err}"),
format!("Failed to create OVH DNS updater: {err}"),
)
})
.ok(),