annotate mod_s2s_reload_newcomponent/mod_s2s_reload_newcomponent.lua @ 735:c1b0f0c33c6a

mod_archive: Fix hour offset in stored message date os.date expect a timestamp in local time, that is subject to daylight saving. But since we pass an UTC timestamp to os.date one hour is (wrongly) added in the summer. The only sensible thing is to call the os.date only once with the ! parametter. And then parsing this sting to get the utc_timestamp. Calling os.date with an UTC timestamp is not possible, and calling os.date twice without timestamp could give different results.
author Olivier Goffart <ogoffart@woboq.com>
date Wed, 04 Jul 2012 13:49:57 +0200
parents 7487f8b47662
children fe5bb7b13a59
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
213
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
1 local modulemanager = require "core.modulemanager";
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
2 local config = require "core.configmanager";
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
3
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
4 module.host = "*";
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
5
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
6 local function reload_components()
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
7 local defined_hosts = config.getconfig();
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
8
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
9 for host in pairs(defined_hosts) do
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
10 if (not hosts[host] and host ~= "*") then
214
7487f8b47662 mod_s2s_reload_newcomponent: fix debug logs
Gaurav <gauravsri@gmail.com>
parents: 213
diff changeset
11 module:log ("debug", "loading new component %s", host);
213
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
12 modulemanager.load(host, configmanager.get(host, "core", "component_module"));
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
13 end
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
14 end;
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
15
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
16 return;
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
17 end
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
18
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
19 module:hook("config-reloaded", reload_components);
89051a926f74 initial creation of module for reloading new components
Gaurav <gauravsri@gmail.com>
parents:
diff changeset
20