Skip to content

Commit

Permalink
Fix WorkerSettings.disableLiburing option
Browse files Browse the repository at this point in the history
### Details

- I forgot to pass it in `createWorker()` method...
  • Loading branch information
ibc committed Aug 12, 2024
1 parent ed9d2d9 commit 9929459
Showing 1 changed file with 2 additions and 0 deletions.
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 9929459

Please sign in to comment.