From 9d4c01d425a9ef31b9ed26a1e90f886752966203 Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Fri, 25 Jun 2021 01:30:10 +0200 Subject: [PATCH] mod_push_keepalive: Fix 'resume_timeout' docs The default 'resume_timeout' value is 72 hours, not 72 minutes. --- src/mod_push_keepalive.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod_push_keepalive.erl b/src/mod_push_keepalive.erl index 83b89ff50..aba4fbfae 100644 --- a/src/mod_push_keepalive.erl +++ b/src/mod_push_keepalive.erl @@ -87,7 +87,7 @@ mod_opt_type(wake_on_timeout) -> econf:bool(). mod_options(_Host) -> - [{resume_timeout, timer:seconds(259200)}, + [{resume_timeout, timer:hours(72)}, {wake_on_start, false}, {wake_on_timeout, true}]. @@ -111,7 +111,7 @@ mod_doc() -> "notification is issued. Once that happened, the " "resumption timeout configured for the 'mod_stream_mgmt' " "module is restored. " - "The default value is '72' minutes.")}}, + "The default value is '72' hours.")}}, {wake_on_start, #{value => "true | false", desc =>