We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6d4d2f commit c7af272Copy full SHA for c7af272
lib/app_worker.js
@@ -21,7 +21,7 @@ const app = new Application(options);
21
const clusterConfig = app.config.cluster || /* istanbul ignore next */ {};
22
const listenConfig = clusterConfig.listen || /* istanbul ignore next */ {};
23
const port = options.port = options.port || listenConfig.port;
24
-const https = options.https || listenConfig.https
+const https = options.https || listenConfig.https;
25
process.send({ to: 'master', action: 'realport', data: port });
26
app.ready(startServer);
27
0 commit comments