summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_runtime.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/nxt_runtime.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nxt_runtime.c b/src/nxt_runtime.c
index bcd156ee..ea01f06f 100644
--- a/src/nxt_runtime.c
+++ b/src/nxt_runtime.c
@@ -118,6 +118,10 @@ nxt_runtime_create(nxt_task_t *task)
goto fail;
}
+ if (nxt_port_rpc_init() != NXT_OK) {
+ goto fail;
+ }
+
nxt_work_queue_add(&task->thread->engine->fast_work_queue,
nxt_runtime_start, task, rt, NULL);