From 44f7642ff23d79e6daaf8dd8ec9e0702436dd99e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Mon, 12 Aug 2024 17:51:13 +0200 Subject: [PATCH] Fix WorkerSettings.disableLiburing option (#1444) --- CHANGELOG.md | 2 ++ node/src/index.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7173676937..00db1b1990 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ### NEXT +- `Worker`: Fix `disableLiburing` option in `WorkerSettings` ([PR #1444](https://github.com/versatica/mediasoup/pull/1444)). + ### 3.14.10 - CI: Support Node 22 ([PR #1434](https://github.com/versatica/mediasoup/pull/1434)). diff --git a/node/src/index.ts b/node/src/index.ts index eeff81c0fa..1c02f63c23 100644 --- a/node/src/index.ts +++ b/node/src/index.ts @@ -56,6 +56,7 @@ export async function createWorker< dtlsCertificateFile, dtlsPrivateKeyFile, libwebrtcFieldTrials, + disableLiburing, appData, }: WorkerSettings = {}): Promise> { logger.debug('createWorker()'); @@ -72,6 +73,7 @@ export async function createWorker< dtlsCertificateFile, dtlsPrivateKeyFile, libwebrtcFieldTrials, + disableLiburing, appData, });