mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.startup: Integrate util.promise with net.server main loop
This commit is contained in:
parent
a35dd91a12
commit
b0ea55a155
1 changed files with 8 additions and 0 deletions
|
@ -395,6 +395,13 @@ function startup.init_http_client()
|
|||
{ capath = config_ssl.capath, cafile = config_ssl.cafile, verify = "peer", }, https_client);
|
||||
end
|
||||
|
||||
function startup.init_promise()
|
||||
local promise = require "util.promise";
|
||||
|
||||
local timer = require "util.timer";
|
||||
promise.set_nexttick(function(f) return timer.add_task(0, f); end);
|
||||
end
|
||||
|
||||
function startup.init_data_store()
|
||||
require "core.storagemanager";
|
||||
end
|
||||
|
@ -647,6 +654,7 @@ function startup.prosody()
|
|||
startup.log_greeting();
|
||||
startup.log_startup_warnings();
|
||||
startup.load_secondary_libraries();
|
||||
startup.init_promise();
|
||||
startup.init_http_client();
|
||||
startup.init_data_store();
|
||||
startup.init_global_protection();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue