Skip to content

Commit a711304

Browse files
codebytereBridgeAR
authored andcommitted
worker: do not use two-arg NewIsolate
PR-URL: #29850 Reviewed-By: James M Snell <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent df218ce commit a711304

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/node_worker.cc

+4-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,10 @@ class WorkerThreadData {
116116
: w_(w) {
117117
CHECK_EQ(uv_loop_init(&loop_), 0);
118118

119-
Isolate* isolate = NewIsolate(w->array_buffer_allocator_.get(), &loop_);
119+
Isolate* isolate = NewIsolate(
120+
w->array_buffer_allocator_.get(),
121+
&loop_,
122+
w->platform_);
120123
CHECK_NOT_NULL(isolate);
121124

122125
{

0 commit comments

Comments
 (0)