# HG changeset patch # User Matthew Wild # Date 1507066635 -3600 # Node ID fe5bb7b13a59b9f36f910915c491c9b08cf8401d # Parent d93a73282a93392d36556b4c167ed1511f38c097 mod_s2s_reload_newcomponent: Fix to use imported configmanager instead of global diff -r d93a73282a93 -r fe5bb7b13a59 mod_s2s_reload_newcomponent/mod_s2s_reload_newcomponent.lua --- a/mod_s2s_reload_newcomponent/mod_s2s_reload_newcomponent.lua Tue Oct 03 22:47:27 2017 +0200 +++ b/mod_s2s_reload_newcomponent/mod_s2s_reload_newcomponent.lua Tue Oct 03 22:37:15 2017 +0100 @@ -9,7 +9,7 @@ for host in pairs(defined_hosts) do if (not hosts[host] and host ~= "*") then module:log ("debug", "loading new component %s", host); - modulemanager.load(host, configmanager.get(host, "core", "component_module")); + modulemanager.load(host, config.get(host, "core", "component_module")); end end;