]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix rspamd_parse_redis_server 1431/head
authorAndrew Lewis <nerf@judo.za.org>
Fri, 17 Feb 2017 16:17:35 +0000 (18:17 +0200)
committerAndrew Lewis <nerf@judo.za.org>
Fri, 17 Feb 2017 16:17:35 +0000 (18:17 +0200)
rules/global_functions.lua

index cab77b714becba7e7e478acf581289ef7cf634d7..d0e9c07fba7a3a0b2a6a24ca15e6e66c0f82b6e6 100644 (file)
@@ -3,8 +3,9 @@ local logger = require "rspamd_logger"
 -- This function parses redis server definition using either
 -- specific server string for this module or global
 -- redis section
-function rspamd_parse_redis_server(module_name, result)
+function rspamd_parse_redis_server(module_name)
 
+  local result = {}
   local default_port = 6379
   local default_timeout = 1.0
   local upstream_list = require "rspamd_upstream_list"
@@ -66,7 +67,6 @@ function rspamd_parse_redis_server(module_name, result)
 
   -- Try local options
   local opts = rspamd_config:get_all_opt(module_name)
-  local result = {}
   local ret = false
 
   if opts then