1
0
mirror of https://git.kore.io/kore.git synced 2024-11-16 15:06:37 +01:00

Skip ACME worker process if ACME isnt built-in.

This commit is contained in:
Joris Vink 2020-06-05 14:21:39 +02:00
parent dcb34033fa
commit 30e9b642a0

View File

@ -62,6 +62,11 @@ kore_msg_parent_init(void)
continue;
}
#if !defined(KORE_USE_ACME)
if (idx == KORE_WORKER_ACME_IDX)
continue;
#endif
kw = kore_worker_data(idx);
kore_msg_parent_add(kw);
}