diff options
author | Satya Rohith <me@satyarohith.com> | 2024-03-14 01:22:53 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-13 19:52:53 +0000 |
commit | bbc211906dcd5043af549250343cd7b42fb45043 (patch) | |
tree | 49868b4b758290dcec6668f95495ce9d79ad6a86 /runtime/js/99_main.js | |
parent | 0fd8f549e2194223eca2d4b17f4e96cd5a0f5fd5 (diff) |
fix(ext/node): make worker ids sequential (#22884)
Diffstat (limited to 'runtime/js/99_main.js')
-rw-r--r-- | runtime/js/99_main.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 585128ba8..62e7278ff 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -794,6 +794,7 @@ function bootstrapWorkerRuntime( runtimeOptions, name, internalName, + workerId, maybeWorkerMetadata, ) { if (hasBootstrapped) { @@ -929,6 +930,7 @@ function bootstrapWorkerRuntime( hasNodeModulesDir, argv0, /* runningOnMainThread */ false, + workerId, workerMetadata, ); } |