prosodyctl: Give each host an independant events object, because it seems to be the right thing to do

This commit is contained in:
Matthew Wild 2010-05-05 20:14:24 +01:00
parent 6131215347
commit 2d20f6c05c

View file

@ -120,12 +120,10 @@ local error_messages = setmetatable({
["not-running"] = "Prosody is not running";
}, { __index = function (t,k) return "Error: "..(tostring(k):gsub("%-", " "):gsub("^.", string.upper)); end });
local events = require "util.events".new();
hosts = prosody.hosts;
for hostname, config in pairs(config.getconfig()) do
hosts[hostname] = { events = events };
hosts[hostname] = { events = require "util.events".new() };
end
require "core.modulemanager"