Problem
The 30s health check interval is not .unref()'d, meaning it keeps the Node.js process alive even if nothing else does. The DedupMap correctly uses .unref() on its cleanup timer.
Location
src/health/monitor.ts:78
Suggested Fix
Add .unref() to the health monitor interval.
Problem
The 30s health check interval is not
.unref()'d, meaning it keeps the Node.js process alive even if nothing else does. TheDedupMapcorrectly uses.unref()on its cleanup timer.Location
src/health/monitor.ts:78Suggested Fix
Add
.unref()to the health monitor interval.