Conversation
Signed-off-by: lazerg <lazerg2@gmail.com>
|
Review requested:
|
|
Caution AgentScan found account activity patterns that may be consistent with automation. This is a heuristic, not proof that this pull request was opened by an agent or violates policy. AI-assisted contributions are permitted, but automated tooling must not open pull requests without advance approval, and contributors must personally understand, test, verify, and take responsibility for every submitted change. See the AgentScan analysis, AI use policy, and automation policy for additional context. |
It is not full automation, i review, test myself |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #66271 +/- ##
==========================================
- Coverage 92.79% 90.33% -2.47%
==========================================
Files 421 789 +368
Lines 191392 273351 +81959
Branches 29399 52262 +22863
==========================================
+ Hits 177606 246931 +69325
- Misses 13464 16898 +3434
- Partials 322 9522 +9200
🚀 New features to boost your workflow:
|
|
Note: #66140 gives --vfs-load mouted volumes a fixed |
With
--import, a worker that inherits--vfs-loadonly mounts the source after the preloads have run, butexecuteUserEntryPoint()resolved the worker's entry point before that. The lookup inside the mount found nothing, so the entry skipped the usual extension search and a worker likenew Worker(path.join(__dirname, 'worker'))failed withERR_MODULE_NOT_FOUND. This resolves the entry again once the mount is in place.Fixes: #66270