Skip to content

Commit

Permalink
Fix WorkerSettings.disableLiburing option (#1444)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc authored Aug 12, 2024
1 parent ed9d2d9 commit 44f7642
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)).
Expand Down
2 changes: 2 additions & 0 deletions node/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export async function createWorker<
dtlsCertificateFile,
dtlsPrivateKeyFile,
libwebrtcFieldTrials,
disableLiburing,
appData,
}: WorkerSettings<WorkerAppData> = {}): Promise<Worker<WorkerAppData>> {
logger.debug('createWorker()');
Expand All @@ -72,6 +73,7 @@ export async function createWorker<
dtlsCertificateFile,
dtlsPrivateKeyFile,
libwebrtcFieldTrials,
disableLiburing,
appData,
});

Expand Down

0 comments on commit 44f7642

Please sign in to comment.