Skip to content

Commit 72a351c

Browse files
committed
Tweak spawn time for safari
1 parent fe9ead8 commit 72a351c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/node-services/src/child_process.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,9 +280,9 @@ function fork(path: string, argv?: string[], processOpts?: IProcessOpts) {
280280
$event: 'init',
281281
data,
282282
});
283+
sentReady = true;
283284
}
284-
sentReady = true;
285-
}, 1000);
285+
}, 1500);
286286

287287
worker.addEventListener('message', e => {
288288
if (!sentReady && e.data && e.data.$type === 'ready') {

0 commit comments

Comments
 (0)