Skip to content

Commit

Permalink
cluster: replace forEach with for-of loop
Browse files Browse the repository at this point in the history
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
PR-URL: #50317
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
  • Loading branch information
jerome-benoit committed May 12, 2024
1 parent c8805b8 commit 7b2dc79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/internal/cluster/child.js
Expand Up @@ -270,14 +270,14 @@ function _disconnect(primaryInitiated) {
}
}

handles.forEach((handle) => {
for (const handle of handles.values()) {
waitingCount++;

if (handle[owner_symbol])
handle[owner_symbol].close(checkWaitingCount);
else
handle.close(checkWaitingCount);
});
}

handles.clear();
checkWaitingCount();
Expand Down
4 changes: 2 additions & 2 deletions lib/internal/cluster/primary.js
Expand Up @@ -152,10 +152,10 @@ function removeWorker(worker) {
function removeHandlesForWorker(worker) {
assert(worker);

handles.forEach((handle, key) => {
for (const { 0: key, 1: handle } of handles) {
if (handle.remove(worker))
handles.delete(key);
});
}
}

cluster.fork = function(env) {
Expand Down

0 comments on commit 7b2dc79

Please sign in to comment.