Skip to content

Commit 9929459

Browse files
committed
Fix WorkerSettings.disableLiburing option
### Details - I forgot to pass it in `createWorker()` method...
1 parent ed9d2d9 commit 9929459

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

node/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export async function createWorker<
5656
dtlsCertificateFile,
5757
dtlsPrivateKeyFile,
5858
libwebrtcFieldTrials,
59+
disableLiburing,
5960
appData,
6061
}: WorkerSettings<WorkerAppData> = {}): Promise<Worker<WorkerAppData>> {
6162
logger.debug('createWorker()');
@@ -72,6 +73,7 @@ export async function createWorker<
7273
dtlsCertificateFile,
7374
dtlsPrivateKeyFile,
7475
libwebrtcFieldTrials,
76+
disableLiburing,
7577
appData,
7678
});
7779

0 commit comments

Comments
 (0)