mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 03:04:19 +00:00
taskpool: Fix some references to threadpool that should be taskpool.
Resolves: #1478
This commit is contained in:
committed by
github-actions[bot]
parent
fab46493b3
commit
21df9edc38
@@ -203,7 +203,7 @@ static void router_dispatch(void *data,
|
||||
}
|
||||
|
||||
static struct stasis_message_router *stasis_message_router_create_internal(
|
||||
struct stasis_topic *topic, int use_thread_pool, const char *file, int lineno,
|
||||
struct stasis_topic *topic, int use_task_pool, const char *file, int lineno,
|
||||
const char *func)
|
||||
{
|
||||
int res;
|
||||
@@ -223,7 +223,7 @@ static struct stasis_message_router *stasis_message_router_create_internal(
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (use_thread_pool) {
|
||||
if (use_task_pool) {
|
||||
router->subscription = __stasis_subscribe_pool(topic, router_dispatch, router, file, lineno, func);
|
||||
} else {
|
||||
router->subscription = __stasis_subscribe(topic, router_dispatch, router, file, lineno, func);
|
||||
|
||||
Reference in New Issue
Block a user