mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Give each host an independant events object, because it seems to be the right thing to do
This commit is contained in:
parent
6131215347
commit
2d20f6c05c
1 changed files with 1 additions and 3 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue