Skip to content

Commit a29cd6d

Browse files
authored
Fix deprecation warning around ContextDisposedNotification
1 parent 52d3e9d commit a29cd6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/workerd/io/worker.c++

+1-1
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ struct Worker::Isolate::Impl {
610610
i.get()->contextDestroyed(context.getHandle(*lock));
611611
}
612612
{ auto drop = kj::mv(context); }
613-
lock->v8Isolate->ContextDisposedNotification(false);
613+
lock->v8Isolate->ContextDisposedNotification(v8::ContextDependants::kNoDependants);
614614
});
615615
}
616616

0 commit comments

Comments
 (0)