all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [PATCH yew-comp] fix #7959: acme: use correct validation-delay maximum
@ 2026-08-24  7:16 Dominik Csapak
  2026-08-24  7:19 ` Dominik Csapak
  2026-08-24  7:55 ` superseded: " Dominik Csapak
  0 siblings, 2 replies; 3+ messages in thread
From: Dominik Csapak @ 2026-08-24  7:16 UTC (permalink / raw)
  To: yew-devel

as this delay is in seconds, and the maximum in the backend is 48 hours,
use the same 48 hours limit on the frontend (like in the ExtJS UI).

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
 src/acme/acme_plugins.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/acme/acme_plugins.rs b/src/acme/acme_plugins.rs
index 82e97e3..4ef46fa 100644
--- a/src/acme/acme_plugins.rs
+++ b/src/acme/acme_plugins.rs
@@ -412,7 +412,7 @@ impl ProxmoxAcmePluginsPanel {
                 tr!("Validation Delay"),
                 Number::<u8>::new()
                     .name("validation-delay")
-                    .max(48)
+                    .max(48 * 60 * 60)
                     .placeholder("30"),
             )
             .with_field(
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH yew-comp] fix #7959: acme: use correct validation-delay maximum
  2026-08-24  7:16 [PATCH yew-comp] fix #7959: acme: use correct validation-delay maximum Dominik Csapak
@ 2026-08-24  7:19 ` Dominik Csapak
  2026-08-24  7:55 ` superseded: " Dominik Csapak
  1 sibling, 0 replies; 3+ messages in thread
From: Dominik Csapak @ 2026-08-24  7:19 UTC (permalink / raw)
  To: yew-devel

scratch that, it does not compile, was too fast with sending the patch....

On 8/24/26 9:16 AM, Dominik Csapak wrote:
> as this delay is in seconds, and the maximum in the backend is 48 hours,
> use the same 48 hours limit on the frontend (like in the ExtJS UI).
> 
> Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
> ---
>   src/acme/acme_plugins.rs | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/acme/acme_plugins.rs b/src/acme/acme_plugins.rs
> index 82e97e3..4ef46fa 100644
> --- a/src/acme/acme_plugins.rs
> +++ b/src/acme/acme_plugins.rs
> @@ -412,7 +412,7 @@ impl ProxmoxAcmePluginsPanel {
>                   tr!("Validation Delay"),
>                   Number::<u8>::new()
>                       .name("validation-delay")
> -                    .max(48)
> +                    .max(48 * 60 * 60)
>                       .placeholder("30"),
>               )
>               .with_field(





^ permalink raw reply	[flat|nested] 3+ messages in thread

* superseded: [PATCH yew-comp] fix #7959: acme: use correct validation-delay maximum
  2026-08-24  7:16 [PATCH yew-comp] fix #7959: acme: use correct validation-delay maximum Dominik Csapak
  2026-08-24  7:19 ` Dominik Csapak
@ 2026-08-24  7:55 ` Dominik Csapak
  1 sibling, 0 replies; 3+ messages in thread
From: Dominik Csapak @ 2026-08-24  7:55 UTC (permalink / raw)
  To: yew-devel

superseded by v2:
https://lore.proxmox.com/yew-devel/20260824075440.892286-1-d.csapak@proxmox.com/T/#u

On 8/24/26 9:16 AM, Dominik Csapak wrote:
> as this delay is in seconds, and the maximum in the backend is 48 hours,
> use the same 48 hours limit on the frontend (like in the ExtJS UI).
> 
> Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
> ---
>   src/acme/acme_plugins.rs | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/acme/acme_plugins.rs b/src/acme/acme_plugins.rs
> index 82e97e3..4ef46fa 100644
> --- a/src/acme/acme_plugins.rs
> +++ b/src/acme/acme_plugins.rs
> @@ -412,7 +412,7 @@ impl ProxmoxAcmePluginsPanel {
>                   tr!("Validation Delay"),
>                   Number::<u8>::new()
>                       .name("validation-delay")
> -                    .max(48)
> +                    .max(48 * 60 * 60)
>                       .placeholder("30"),
>               )
>               .with_field(





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-08-24  7:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-24  7:16 [PATCH yew-comp] fix #7959: acme: use correct validation-delay maximum Dominik Csapak
2026-08-24  7:19 ` Dominik Csapak
2026-08-24  7:55 ` superseded: " Dominik Csapak

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal