diff options
author | Evgeny Khramtsov <ekhramtsov@process-one.net> | 2019-07-16 23:42:38 +0300 |
---|---|---|
committer | Evgeny Khramtsov <ekhramtsov@process-one.net> | 2019-07-16 23:42:38 +0300 |
commit | 554f4fc85152648f58deab3d71d364823fbd090d (patch) | |
tree | f88a06a35aace8485dc33f55dba816b20370ad1f | |
parent | Fix typos using codespell (diff) |
Change time unit of hibernation_timeout option to 'second'
This is done for the sake of consistency with other options
-rw-r--r-- | src/mod_muc.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_muc.erl b/src/mod_muc.erl index a553618f3..f75981736 100644 --- a/src/mod_muc.erl +++ b/src/mod_muc.erl @@ -1182,7 +1182,7 @@ mod_opt_type(hosts) -> mod_opt_type(queue_type) -> econf:queue_type(); mod_opt_type(hibernation_timeout) -> - econf:timeout(minute, infinity). + econf:timeout(second, infinity). mod_options(Host) -> [{access, all}, |