mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
plugins: Use integer config API with interval specification where sensible
Many of these fall into a few categories: - util.cache size, must be >= 1 - byte or item counts that logically can't be negative - port numbers that should be in 1..0xffff
This commit is contained in:
parent
55768509a3
commit
71ad48095d
26 changed files with 48 additions and 47 deletions
|
@ -9,7 +9,7 @@ local set = require "prosody.util.set";
|
|||
local auto_purge_enabled = module:get_option_boolean("storage_memory_temporary", false);
|
||||
local auto_purge_stores = module:get_option_set("storage_memory_temporary_stores", {});
|
||||
|
||||
local archive_item_limit = module:get_option_number("storage_archive_item_limit", 1000);
|
||||
local archive_item_limit = module:get_option_integer("storage_archive_item_limit", 1000, 0);
|
||||
|
||||
local memory = setmetatable({}, {
|
||||
__index = function(t, k)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue