Skip to content

Commit

Permalink
db-tabulator: fix passing args to child process
Browse files Browse the repository at this point in the history
!web-restart
  • Loading branch information
siddharthvp committed Apr 13, 2024
1 parent 892053f commit 6817206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db-tabulator/preprocess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export async function processQueriesExternally(page: string) {
const { signal } = controller;
const child = fork(
__dirname + '/external-update.js',
[page].concat(argv.fake ? ['--fake'] : []),
['--page', page].concat(argv.fake ? ['--fake'] : []),
{
execArgv: ['--no-node-snapshot'], // required for node 20+
signal
Expand Down

0 comments on commit 6817206

Please sign in to comment.