Browse Source

[Minor] Move settings symbol registration earlier

tags/2.0
Vsevolod Stakhov 4 years ago
parent
commit
f28ae32488
1 changed files with 8 additions and 8 deletions
  1. 8
    8
      src/plugins/lua/settings.lua

+ 8
- 8
src/plugins/lua/settings.lua View File

@@ -1106,6 +1106,14 @@ if redis_section then
end, redis_key_handlers)
end

module_sym_id = rspamd_config:register_symbol({
name = 'SETTINGS_CHECK',
type = 'prefilter',
callback = check_settings,
priority = 10,
flags = 'empty,nostat,explicit_disable,ignore_passthrough',
})

local set_section = rspamd_config:get_all_opt("settings")

if set_section and set_section[1] and type(set_section[1]) == "string" then
@@ -1118,14 +1126,6 @@ elseif set_section and type(set_section) == "table" then
process_settings_table(set_section, true, settings_map_pool)
end

module_sym_id = rspamd_config:register_symbol({
name = 'SETTINGS_CHECK',
type = 'prefilter',
callback = check_settings,
priority = 10,
flags = 'empty,nostat,explicit_disable,ignore_passthrough',
})

rspamd_config:add_config_unload(function()
if settings_map_pool then
settings_map_pool:destroy()

Loading…
Cancel
Save