From 5113405ee25b7df4282ae00b3315bcd252364d58 Mon Sep 17 00:00:00 2001 From: Yash Ladha Date: Thu, 8 Jul 2021 20:51:32 +0530 Subject: [PATCH] cluster: fix comment regarding child_process file Fixed comment for the description of INTERNAL_PREFIX in child_process whereas the value is present in the internal/child_process.js. --- lib/internal/cluster/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/cluster/utils.js b/lib/internal/cluster/utils.js index 732d33e46936a8..ec1ae71b1f26d4 100644 --- a/lib/internal/cluster/utils.js +++ b/lib/internal/cluster/utils.js @@ -17,7 +17,7 @@ function sendHelper(proc, message, handle, cb) { if (!proc.connected) return false; - // Mark message as internal. See INTERNAL_PREFIX in lib/child_process.js + // Mark message as internal. See INTERNAL_PREFIX in lib/internal/child_process.js message = { cmd: 'NODE_CLUSTER', ...message, seq }; if (typeof cb === 'function')