You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
330 B

######## async operations module ########
loadmodule "async.so"
modparam("async", "workers", 5)
event_route[core:worker-one-init]
{
async_route("DEFERRED_INIT", "20");
}
route[DEFERRED_INIT]
{
xlog("L_INFO", "processing deferred init\n");
#!ifdef PRESENCE_ROLE
route(PRESENCE_INITIAL_CLEANUP);
#!endif
}