Skip to content

Commit d194c0f

Browse files
Aldo Ambrosioniaddaleax
Aldo Ambrosioni
authored andcommitted
src: replaced var with let
replaced var with let in lib/internal/cluter/master.js PR-URL: #30397 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent 0b64e45 commit d194c0f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/internal/cluster/master.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ cluster.settings = {};
2929
cluster.SCHED_NONE = SCHED_NONE; // Leave it to the operating system.
3030
cluster.SCHED_RR = SCHED_RR; // Master distributes connections.
3131

32-
var ids = 0;
33-
var debugPortOffset = 1;
34-
var initialized = false;
32+
let ids = 0;
33+
let debugPortOffset = 1;
34+
let initialized = false;
3535

3636
// XXX(bnoordhuis) Fold cluster.schedulingPolicy into cluster.settings?
37-
var schedulingPolicy = {
37+
let schedulingPolicy = {
3838
'none': SCHED_NONE,
3939
'rr': SCHED_RR
4040
}[process.env.NODE_CLUSTER_SCHED_POLICY];
@@ -271,7 +271,7 @@ function queryServer(worker, message) {
271271

272272
const key = `${message.address}:${message.port}:${message.addressType}:` +
273273
`${message.fd}:${message.index}`;
274-
var handle = handles.get(key);
274+
let handle = handles.get(key);
275275

276276
if (handle === undefined) {
277277
let address = message.address;
@@ -286,7 +286,7 @@ function queryServer(worker, message) {
286286
address = message.address;
287287
}
288288

289-
var constructor = RoundRobinHandle;
289+
let constructor = RoundRobinHandle;
290290
// UDP is exempt from round-robin connection balancing for what should
291291
// be obvious reasons: it's connectionless. There is nothing to send to
292292
// the workers except raw datagrams and that's pointless.

0 commit comments

Comments
 (0)