hostmanager: activate() now gets the host config from configmanager when a config isn't given.

This commit is contained in:
Waqas Hussain 2010-12-09 21:11:12 +05:00
parent e3a8fa54c0
commit e8fa3940a7

View file

@ -54,6 +54,7 @@ prosody_events.add_handler("server-starting", load_enabled_hosts);
function activate(host, host_config)
if hosts[host] then return nil, "host-already-exists"; end
host_config = host_config or configmanager.getconfig()[host];
local host_session = {
host = host;
s2sout = {};