From 9929459e124f8d95a3ced45ff18f4a318912f95d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Mon, 12 Aug 2024 17:42:06 +0200 Subject: [PATCH 1/2] Fix WorkerSettings.disableLiburing option ### Details - I forgot to pass it in `createWorker()` method... --- node/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) 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, }); From 7eebee9c2f3c4b9bb1de771bca00558a9f7f2646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Mon, 12 Aug 2024 17:50:38 +0200 Subject: [PATCH 2/2] update CHANGELOG --- CHANGELOG.md | 2 ++ 1 file changed, 2 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)).