Node.js - Cluster Module
Identify the issue in this Node.js cluster code snippet:
const cluster = require('cluster');
const os = require('os');
if (cluster.isPrimary) {
for (let i = 0; i <= os.cpus().length; i++) {
cluster.fork();
}
}