config: acme: make validation_delay crate public

we need the setting in acme::plugin.

Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
This commit is contained in:
Stoiko Ivanov 2021-06-28 18:41:08 +00:00 committed by Thomas Lamprecht
parent f9bd5e1691
commit 4d8bd03668
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ pub struct DnsPluginCore {
/// ///
/// Allows to cope with long TTL of DNS records. /// Allows to cope with long TTL of DNS records.
#[serde(skip_serializing_if = "Option::is_none", default)] #[serde(skip_serializing_if = "Option::is_none", default)]
validation_delay: Option<u32>, pub(crate) validation_delay: Option<u32>,
/// Flag to disable the config. /// Flag to disable the config.
#[serde(skip_serializing_if = "Option::is_none", default)] #[serde(skip_serializing_if = "Option::is_none", default)]