From c61bbadb22c64860653271a1f7292b9d9ab3d92d Mon Sep 17 00:00:00 2001 From: Jeffrey Sun Date: Wed, 3 May 2017 16:22:31 -0700 Subject: [PATCH] add const --- run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.js b/run.js index 52f9f22..b489db8 100644 --- a/run.js +++ b/run.js @@ -1,7 +1,7 @@ const cluster = require('express-cluster'); const app = require('./server.js'); -activePort = process.env.PORT || 3000; +const activePort = process.env.PORT || 3000; cluster((worker) => { app.listen(activePort, () => {